diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-15 21:09:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-15 21:09:19 (GMT) |
commit | 8ca282f12a91551368321f828a1d482df75fe920 (patch) | |
tree | 7bc1f99ca580abb35d3278d80a2ed35a5b856450 /Python | |
parent | f705f8e9b58955d0d9083e98d71ba01b2e69798c (diff) | |
download | cpython-8ca282f12a91551368321f828a1d482df75fe920.zip cpython-8ca282f12a91551368321f828a1d482df75fe920.tar.gz cpython-8ca282f12a91551368321f828a1d482df75fe920.tar.bz2 |
Typo fix - implemention should be implementation (GH-16806)
(cherry picked from commit 2798b60c55619d8981288b69c20ba4a09efc7b0b)
Co-authored-by: Hansraj Das <raj.das.136@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 b3cbf9a..3841259 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -6,7 +6,7 @@ #include "structmember.h" /* -This file provides an implemention of an immutable mapping using the +This file provides an implementation of an immutable mapping using the Hash Array Mapped Trie (or HAMT) datastructure. This design allows to have: |