From d5e362e9782f5a9b8b4d82970f5af69b9051abd7 Mon Sep 17 00:00:00 2001 From: Mohammad Ahmadi Date: Thu, 9 May 2024 18:38:40 +0330 Subject: [PATCH] DOC: Fix typo in indexing.rst (#58653) Fix typo in "Returning a view versus a copy" section --- doc/source/user_guide/indexing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/indexing.rst b/doc/source/user_guide/indexing.rst index 4954ee1538697..ba5a5c7db614b 100644 --- a/doc/source/user_guide/indexing.rst +++ b/doc/source/user_guide/indexing.rst @@ -1730,7 +1730,7 @@ Returning a view versus a copy .. warning:: :ref:`Copy-on-Write ` - will become the new default in pandas 3.0. This means than chained indexing will + will become the new default in pandas 3.0. This means that chained indexing will never work. As a consequence, the ``SettingWithCopyWarning`` won't be necessary anymore. See :ref:`this section `