diff options
author | Quan Tian <qtian@vmware.com> | 2018-10-19 21:30:03 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-19 21:30:03 (GMT) |
commit | 3bd0d620d6669558e03e1022cbab88d64d4530b3 (patch) | |
tree | eab293c78e5fd68da12326a979710631def36ea0 /Modules/gcmodule.c | |
parent | f192aeb95a139ede74d69e39c046c498ff288a37 (diff) | |
download | cpython-3bd0d620d6669558e03e1022cbab88d64d4530b3.zip cpython-3bd0d620d6669558e03e1022cbab88d64d4530b3.tar.gz cpython-3bd0d620d6669558e03e1022cbab88d64d4530b3.tar.bz2 |
Fix typos in comments (GH-9905)
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r-- | Modules/gcmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index e3e290c..7cddaba 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -504,7 +504,7 @@ move_unreachable(PyGC_Head *young, PyGC_Head *unreachable) (void *)young); // relink gc_prev to prev element. _PyGCHead_SET_PREV(gc, prev); - // gc is not COLLECTING state aftere here. + // gc is not COLLECTING state after here. gc_clear_collecting(gc); prev = gc; } |