summaryrefslogtreecommitdiff
path: root/Python/pyarena.c
diff options
context:
space:
mode:
authorQuan Tian <qtian@vmware.com>2018-10-20 05:30:03 +0800
committerVictor Stinner <vstinner@redhat.com>2018-10-19 23:30:03 +0200
commit3bd0d620d6669558e03e1022cbab88d64d4530b3 (patch)
treeeab293c78e5fd68da12326a979710631def36ea0 /Python/pyarena.c
parentf192aeb95a139ede74d69e39c046c498ff288a37 (diff)
downloadcpython-git-3bd0d620d6669558e03e1022cbab88d64d4530b3.tar.gz
Fix typos in comments (GH-9905)
Diffstat (limited to 'Python/pyarena.c')
-rw-r--r--Python/pyarena.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pyarena.c b/Python/pyarena.c
index 103603fcdf..abb5729c8a 100644
--- a/Python/pyarena.c
+++ b/Python/pyarena.c
@@ -49,7 +49,7 @@ struct _arena {
*/
block *a_head;
- /* Pointer to the block currently used for allocation. It's
+ /* Pointer to the block currently used for allocation. Its
ab_next field should be NULL. If it is not-null after a
call to block_alloc(), it means a new block has been allocated
and a_cur should be reset to point it.
@@ -57,7 +57,7 @@ struct _arena {
block *a_cur;
/* A Python list object containing references to all the PyObject
- pointers associated with this area. They will be DECREFed
+ pointers associated with this arena. They will be DECREFed
when the arena is freed.
*/
PyObject *a_objects;