Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
taeminhong committed Aug 24, 2017
1 parent 22a552c commit d2f13a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 02-hash-table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static ht_item* ht_new_item(const char* k, const char* v) {
`ht_new` initialises a new hash table. `size` defines how many items we can
store. This is fixed at 53 for now. We'll expand this in the section on
[resizing](/resizing). We initialise the array of items with `calloc`, which
[resizing](/06-resizing). We initialise the array of items with `calloc`, which
fills the allocated memory with `NULL` bytes. A `NULL` entry in the array
indicates that the bucket is empty.
Expand Down
2 changes: 1 addition & 1 deletion 05-methods/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void ht_delete(ht_hash_table* h, const char* key);
To insert a new key-value pair, we iterate through indexes until we find an
empty bucket. We then insert the item into that bucket and increment the hash
table's `count` attribute, to indicate a new item has been added. A hash table's
`count` attribute will become useful when we look at [resizing](/resizing) in
`count` attribute will become useful when we look at [resizing](/06-resizing) in
the next section.

```c
Expand Down

0 comments on commit d2f13a3

Please sign in to comment.