diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-04-08 09:14:43 (GMT) |
---|---|---|
committer | Inada Naoki <songofacandy@gmail.com> | 2019-04-08 09:14:43 (GMT) |
commit | f4efa312d14bc792f59514c5696e29041e05deca (patch) | |
tree | dc04b50522727f344e518a177bd80acf5461c042 /Doc/c-api | |
parent | 96be3400a97946b0b3d032dd8c3c0561786796f1 (diff) | |
download | cpython-f4efa312d14bc792f59514c5696e29041e05deca.zip cpython-f4efa312d14bc792f59514c5696e29041e05deca.tar.gz cpython-f4efa312d14bc792f59514c5696e29041e05deca.tar.bz2 |
Correct "inplace" with "in-place" (GH-10480)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/typeobj.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index f36cfe5..0647a49 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -2052,7 +2052,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 @@ -2061,7 +2061,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. |