diff options
author | Siddharth Singh <siddhartth@google.com> | 2023-03-30 17:28:03 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-30 19:18:39 +0200 |
commit | ec063d259108c6c9b96dbaddbd1ae76748d309ec (patch) | |
tree | 1c124c3b519d1909c8da66834616c348df2b7a56 /hashmap.h | |
parent | Git 2.40 (diff) | |
download | git-ec063d259108c6c9b96dbaddbd1ae76748d309ec.tar.xz git-ec063d259108c6c9b96dbaddbd1ae76748d309ec.zip |
hashmap.h: fix minor typo
The word "no" should be "not".
Signed-off-by: Siddharth Singh <siddhartth@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'hashmap.h')
-rw-r--r-- | hashmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -270,7 +270,7 @@ void hashmap_clear_(struct hashmap *map, ssize_t offset); #define hashmap_clear(map) hashmap_clear_(map, -1) /* - * Similar to hashmap_clear(), except that the table is no deallocated; it + * Similar to hashmap_clear(), except that the table is not deallocated; it * is merely zeroed out but left the same size as before. If the hashmap * will be reused, this avoids the overhead of deallocating and * reallocating map->table. As with hashmap_clear(), you may need to free |