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 content/2022/zig-hashmaps-explained.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or if you do not have string keys, you can use an `Auto` hashmap instead:
var my_hash_map = std.AutoHashMap(K, V).init(allocator);
```

Where `K` and `V` are your key and value data types, respectively. e.g. `[]const u8` for a string.
Where `K` and `V` are your key and value data types, respectively. e.g. `u8` for a letter.

You can then use these APIs:

Expand Down