aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-03-31 17:50:23 -0700
committerJunio C Hamano <gitster@pobox.com>2023-03-31 17:50:24 -0700
commite5b6fc627e78641e1df9077624d1ab33afe1166b (patch)
tree2414884e1f24f2a9f09225a62cb80bbae2fde308
parentMerge branch 'ds/p2000-fix-grep-sparse' (diff)
parenthashmap.h: fix minor typo (diff)
downloadgit-e5b6fc627e78641e1df9077624d1ab33afe1166b.tar.gz
git-e5b6fc627e78641e1df9077624d1ab33afe1166b.zip
Merge branch 'ss/hashmap-typofix'
Typofix. * ss/hashmap-typofix: hashmap.h: fix minor typo
-rw-r--r--hashmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hashmap.h b/hashmap.h
index 7251687d73..e2cf9c78d8 100644
--- 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