]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-121355: Fix incorrect word in simple_stmts.rst (GH-121356) (#121363)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 4 Jul 2024 13:43:31 +0000 (15:43 +0200)
committerGitHub <noreply@github.com>
Thu, 4 Jul 2024 13:43:31 +0000 (13:43 +0000)
(cherry picked from commit 715ec630dd78819ed79cad5ac28617daefe1e745)

Co-authored-by: Jongbum Won <71166964+Wondaeng@users.noreply.github.com>
Doc/reference/simple_stmts.rst

index 4f6c0c63ae42beb881fa9432d98ac4d15c704021..618664b23f06806b92db420525d415fefcb3fbda 100644 (file)
@@ -293,7 +293,7 @@ statements, cannot be an unpacking) and the expression list, performs the binary
 operation specific to the type of assignment on the two operands, and assigns
 the result to the original target.  The target is only evaluated once.
 
-An augmented assignment expression like ``x += 1`` can be rewritten as ``x = x +
+An augmented assignment statement like ``x += 1`` can be rewritten as ``x = x +
 1`` to achieve a similar, but not exactly equal effect. In the augmented
 version, ``x`` is only evaluated once. Also, when possible, the actual operation
 is performed *in-place*, meaning that rather than creating a new object and