Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 01-introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ index, and use the index to find it in the array.
Array indexing has algorithmic complexity `O(1)`, making hash tables fast at
storing and retrieving data.

Our hash table will map string keys to string values, but the principals
Our hash table will map string keys to string values, but the principles
given here are applicable to hash tables which map arbitrary key types to
arbitrary value types. Only ASCII strings will be supported, as supporting
unicode is non-trivial and out of scope of this tutorial.
Expand Down