diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-02 03:30:34 (GMT) |
|---|---|---|
| committer | Yury Selivanov <yury@magic.io> | 2018-02-02 03:30:34 (GMT) |
| commit | 5d2dcd044d875a89cb8b328612a9e1b5aece5ad9 (patch) | |
| tree | 0d6cfa685d65387581b8da8e3de86a7c4f98a79f /Python | |
| parent | 71a0b0e6e8754b6ea0db4570152112516cb04fe5 (diff) | |
| download | cpython-5d2dcd044d875a89cb8b328612a9e1b5aece5ad9.zip cpython-5d2dcd044d875a89cb8b328612a9e1b5aece5ad9.tar.gz cpython-5d2dcd044d875a89cb8b328612a9e1b5aece5ad9.tar.bz2 | |
Fix typo in hamt.c comments (GH-5478) (#5484)
(cherry picked from commit 01a0cb891694cf73b86f799c48d8c78de1b8f74c)
Co-authored-by: Dmitry Alimov <dvalimov@gmail.com>
Diffstat (limited to 'Python')
| -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 *) |
