diff options
author | Elijah Newren <newren@gmail.com> | 2020-07-28 20:45:39 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-28 14:28:15 -0700 |
commit | 861c4ce141a88e40d8713540ba6b6ede0ccfbe94 (patch) | |
tree | 354a62388464be13d39f1168565cf764e85d3065 | |
parent | Remove doubled words in various comments (diff) | |
download | tgif-861c4ce141a88e40d8713540ba6b6ede0ccfbe94.tar.xz |
hashmap: fix typo in usage docs
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | hashmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ struct hashmap_entry { * argument `keydata`, respectively. Otherwise, `keydata` is NULL. * * When it is too expensive to allocate a user entry (either because it is - * large or varialbe sized, such that it is not on the stack), then the + * large or variable sized, such that it is not on the stack), then the * relevant data to check for equality should be passed via `keydata`. * In this case `key` can be a stripped down version of the user key data * or even just a hashmap_entry having the correct hash. |