Skip to content

Commit 3285471

Browse files
authored
Fix typo in hash table documentation
1 parent 1f7267e commit 3285471

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

_posts/2024-06-19-array-based-hash-table-in-c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In order to fit more than one person in each bucket, each bucket is a linked lis
2323

2424
Usually linked lists are implemented by having every node be `malloc()`ed separately, but `main.c` manages to do it with just has a single, global `buckets` and `chains` array.
2525

26-
I made these arrays are global in order to make the code easier to read, but you could of course just pass them as arguments to the functions.
26+
I made these arrays global in order to make the code easier to read, but you could of course just pass them as arguments to the functions.
2727

2828
## Examples
2929

0 commit comments

Comments
 (0)