diff options
author | Dmitry Alimov <dvalimov@gmail.com> | 2018-02-02 02:59:48 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-02-02 02:59:48 (GMT) |
commit | 01a0cb891694cf73b86f799c48d8c78de1b8f74c (patch) | |
tree | 651e56e2c4995479e48520e879d15c1cd118f09a /Python/hamt.c | |
parent | 3d4dbd8f019c0bbac99fc9248077044ff1039ca3 (diff) | |
download | cpython-01a0cb891694cf73b86f799c48d8c78de1b8f74c.zip cpython-01a0cb891694cf73b86f799c48d8c78de1b8f74c.tar.gz cpython-01a0cb891694cf73b86f799c48d8c78de1b8f74c.tar.bz2 |
Fix typo in hamt.c comments (#5478)
Diffstat (limited to 'Python/hamt.c')
-rw-r--r-- | Python/hamt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/hamt.c b/Python/hamt.c index 38f76d1..8998dbd 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 *) |