From c2ddb8f2905f5f93074c93f5b985cc9193c0ae70 Mon Sep 17 00:00:00 2001 From: Riccardo Di Maio <35903974+rdimaio@users.noreply.github.com> Date: Sat, 14 Jul 2018 23:17:38 +0200 Subject: [PATCH] Fix typo --- 05-methods/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-methods/README.md b/05-methods/README.md index fc74c08..06150ba 100644 --- a/05-methods/README.md +++ b/05-methods/README.md @@ -6,7 +6,7 @@ Our hash function will implement the following API: // hash_table.h void ht_insert(ht_hash_table* ht, const char* key, const char* value); char* ht_search(ht_hash_table* ht, const char* key); -void ht_delete(ht_hash_table* h, const char* key); +void ht_delete(ht_hash_table* ht, const char* key); ``` ## Insert