Skip to content

Commit ea35762

Browse files
Apply suggestion
1 parent a26cb08 commit ea35762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/extending/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ user-defined class, and let's further suppose that the class defined a
10861086
:meth:`!__del__` method. If this class instance has a reference count of 1,
10871087
disposing of it will call its :meth:`!__del__` method. Internally,
10881088
:c:func:`PyList_SetItem` calls :c:func:`Py_DECREF` on the replaced item,
1089-
which invokes replaced item's corrresponding
1089+
which invokes replaced item's corresponding
10901090
:c:member:`~PyTypeObject.tp_dealloc` function. During
10911091
deallocation, :c:member:`~PyTypeObject.tp_dealloc` calls
10921092
:c:member:`~PyTypeObject.tp_finalize`, which is mapped to the

0 commit comments

Comments
 (0)