Skip to content

Commit

Permalink
Merge pull request jamesroutley#3 from freefal/master
Browse files Browse the repository at this point in the history
Remove duplicate struct name ht_item
  • Loading branch information
jamesroutley authored Aug 23, 2017
2 parents 3810108 + 1532b2e commit 22a552c
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 22a552c

Please sign in to comment.