diff options
author | Hansraj Das <raj.das.136@gmail.com> | 2019-10-15 20:49:13 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-10-15 20:49:13 (GMT) |
commit | 2798b60c55619d8981288b69c20ba4a09efc7b0b (patch) | |
tree | 9de6ee1128d749d0d6a2bb9d20242ac4e82072fb | |
parent | 3cd21aa6a1467723ccc85e6411a6cbe7fa81ef76 (diff) | |
download | cpython-2798b60c55619d8981288b69c20ba4a09efc7b0b.zip cpython-2798b60c55619d8981288b69c20ba4a09efc7b0b.tar.gz cpython-2798b60c55619d8981288b69c20ba4a09efc7b0b.tar.bz2 |
Typo fix - implemention should be implementation (GH-16806)
-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 28b4e1e..ea659c8 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: |