From a1c06d0a1c82ee480978099a850e5bd2ae1b990a Mon Sep 17 00:00:00 2001 From: Mohammad Ahmadi Date: Thu, 9 May 2024 17:51:48 +0330 Subject: [PATCH] DOC: Fix typo in indexing.rst 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 `