summaryrefslogtreecommitdiff
path: root/Include/object.h
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-04-14 09:35:51 +0300
committerBerker Peksag <berker.peksag@gmail.com>2015-04-14 09:35:51 +0300
commitdfa4e045a363fd1dd31c1d57002fc78c10de85a2 (patch)
tree3f044e4d37129fb3dd70d1535cad09c2f78d9563 /Include/object.h
parenta468db9b0bd8d17575923b91db5fbc4a222d4252 (diff)
parent4882cacab6bcaf90ac496fc8878987598e7665c1 (diff)
downloadcpython-git-dfa4e045a363fd1dd31c1d57002fc78c10de85a2.tar.gz
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index e29608aed6..5716f66ffd 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -782,7 +782,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:
*