]> git.ipfire.org Git - thirdparty/git.git/commitdiff
hashmap.h: fix minor typo
authorSiddharth Singh <siddhartth@google.com>
Thu, 30 Mar 2023 15:28:03 +0000 (15:28 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Mar 2023 17:18:39 +0000 (10:18 -0700)
The word "no" should be "not".

Signed-off-by: Siddharth Singh <siddhartth@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
hashmap.h

index 7251687d730d608437a8ed24e4551cf9344fd7f4..e2cf9c78d84ff3046844af498b9539d1edb83445 100644 (file)
--- a/hashmap.h
+++ b/hashmap.h
@@ -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