Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiddharth Singh <siddhartth@google.com>2023-03-30 18:28:03 +0300
committerJunio C Hamano <gitster@pobox.com>2023-03-30 20:18:39 +0300
commitec063d259108c6c9b96dbaddbd1ae76748d309ec (patch)
tree1c124c3b519d1909c8da66834616c348df2b7a56 /hashmap.h
parent73876f4861cd3d187a4682290ab75c9dccadbc56 (diff)
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.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