diff --git a/src/hashmap.c b/src/hashmap.c index cb3c27e5..aafe077c 100644 --- a/src/hashmap.c +++ b/src/hashmap.c @@ -64,7 +64,7 @@ bool hash_AddElement(HashMap map, char const *key, void *element) return newEntry->next != NULL; } -bool hash_DeleteElement(HashMap map, char const *key) +bool hash_RemoveElement(HashMap map, char const *key) { HashType hashedKey = hash(key); struct HashMapEntry **ptr = &map[(HalfHashType)hashedKey];