[Python-checkins] Fix typo in hamt.c comments (#5478)

Yury Selivanov webhook-mailer at python.org
Thu Feb 1 21:59:51 EST 2018


https://github.com/python/cpython/commit/01a0cb891694cf73b86f799c48d8c78de1b8f74c
commit: 01a0cb891694cf73b86f799c48d8c78de1b8f74c
branch: master
author: Dmitry Alimov <dvalimov at gmail.com>
committer: Yury Selivanov <yury at magic.io>
date: 2018-02-01T21:59:48-05:00
summary:

Fix typo in hamt.c comments (#5478)

files:
M Python/hamt.c

diff --git a/Python/hamt.c b/Python/hamt.c
index 38f76d11e3eb..8998dbd76d2e 100644
--- a/Python/hamt.c
+++ b/Python/hamt.c
@@ -1476,7 +1476,7 @@ hamt_node_collision_without(PyHamtNode_Collision *self,
             if (new_count == 1) {
                 /* The node has two keys, and after deletion the
                    new Collision node would have one.  Collision nodes
-                   with one key shouldn't exist, co convert it to a
+                   with one key shouldn't exist, so convert it to a
                    Bitmap node.
                 */
                 PyHamtNode_Bitmap *node = (PyHamtNode_Bitmap *)



More information about the Python-checkins mailing list