diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-04-14 06:30:01 (GMT) |
commit | 4882cacab6bcaf90ac496fc8878987598e7665c1 (patch) | |
tree | 6dab1cbde4725b432bb3fd06e329d003c6a83376 /Include/object.h | |
parent | 52a3b74900db90dfbc5d6ce5145bce02d172b1b1 (diff) | |
download | cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.zip cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.gz cpython-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.bz2 |
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h index 9306288..5f862ab 100644 --- a/Include/object.h +++ b/Include/object.h @@ -779,7 +779,7 @@ PyAPI_FUNC(void) _Py_Dealloc(PyObject *); } while (0) /* Safely decref `op` and set `op` to NULL, especially useful in tp_clear - * and tp_dealloc implementatons. + * and tp_dealloc implementations. * * Note that "the obvious" code can be deadly: * |