diff --git a/02-hash-table/README.md b/02-hash-table/README.md index b0bb176..3b76dbc 100644 --- a/02-hash-table/README.md +++ b/02-hash-table/README.md @@ -4,7 +4,7 @@ Our key-value pairs (items) will each be stored in a `struct`: ```c // hash_table.h -typedef struct ht_item { +typedef struct { char* key; char* value; } ht_item;