1
0
mirror of https://github.com/git/git.git synced 2024-09-28 20:51:42 +02:00

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>
This commit is contained in:
Siddharth Singh 2023-03-30 15:28:03 +00:00 committed by Junio C Hamano
parent 73876f4861
commit ec063d2591

@ -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