diff --git a/content/2022/zig-hashmaps-explained.md b/content/2022/zig-hashmaps-explained.md index 88656a6..2ff2d25 100644 --- a/content/2022/zig-hashmaps-explained.md +++ b/content/2022/zig-hashmaps-explained.md @@ -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: