From 0c133947c9a895429b88276b8d2cd8793f5a86b9 Mon Sep 17 00:00:00 2001 From: Stefanie Molin <24376333+stefmolin@users.noreply.github.com> Date: Mon, 10 Apr 2023 12:41:52 -0700 Subject: [PATCH] Fix typo in v2.0.0.rst --- doc/source/whatsnew/v2.0.0.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v2.0.0.rst b/doc/source/whatsnew/v2.0.0.rst index 2ee6ecc4e6cd4..3ddc8b8919228 100644 --- a/doc/source/whatsnew/v2.0.0.rst +++ b/doc/source/whatsnew/v2.0.0.rst @@ -207,7 +207,7 @@ Copy-on-Write improvements with a :class:`DataFrame`. - Trying to set values using chained assignment (for example, ``df["a"][1:3] = 0``) - will now always raise an warning when Copy-on-Write is enabled. In this mode, + will now always raise a warning when Copy-on-Write is enabled. In this mode, chained assignment can never work because we are always setting into a temporary object that is the result of an indexing operation (getitem), which under Copy-on-Write always behaves as a copy. Thus, assigning through a chain