summaryrefslogtreecommitdiff
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-04-08 02:21:38 -0700
committerGitHub <noreply@github.com>2019-04-08 02:21:38 -0700
commit1f0ff57acbb6f3c2e8715af74b98984c6aa45ea6 (patch)
tree49a22f6255bc9c7a5a841a50508f0200e6707430 /Doc/c-api
parenta9a065addd175ed37a959118c90377ba60f90036 (diff)
downloadcpython-git-1f0ff57acbb6f3c2e8715af74b98984c6aa45ea6.tar.gz
Correct "inplace" with "in-place" (GH-10480)
(cherry picked from commit f4efa312d14bc792f59514c5696e29041e05deca) Co-authored-by: Andre Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/typeobj.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst
index 6cbcc273c1..532508ee72 100644
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -1256,7 +1256,7 @@ Sequence Object Structures
signature. It should modify its first operand, and return it. This slot
may be left to *NULL*, in this case :c:func:`!PySequence_InPlaceConcat`
will fall back to :c:func:`PySequence_Concat`. It is also used by the
- augmented assignment ``+=``, after trying numeric inplace addition
+ augmented assignment ``+=``, after trying numeric in-place addition
via the :c:member:`~PyNumberMethods.nb_inplace_add` slot.
.. c:member:: ssizeargfunc PySequenceMethods.sq_inplace_repeat
@@ -1265,7 +1265,7 @@ Sequence Object Structures
signature. It should modify its first operand, and return it. This slot
may be left to *NULL*, in this case :c:func:`!PySequence_InPlaceRepeat`
will fall back to :c:func:`PySequence_Repeat`. It is also used by the
- augmented assignment ``*=``, after trying numeric inplace multiplication
+ augmented assignment ``*=``, after trying numeric in-place multiplication
via the :c:member:`~PyNumberMethods.nb_inplace_multiply` slot.