Skip to content

Commit

Permalink
Remove duplicate struct name ht_item
Browse files Browse the repository at this point in the history
  • Loading branch information
freefal authored Aug 23, 2017
1 parent ce86c70 commit 1532b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 02-hash-table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1532b2e

Please sign in to comment.