From 2fcbcd5635ad541a5fd15ff5843dc4d42b595b73 Mon Sep 17 00:00:00 2001 From: sakuyarules Date: Sat, 8 Feb 2025 13:35:23 -0700 Subject: [PATCH] Update zig-hashmaps-explained.md --- content/2022/zig-hashmaps-explained.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: