Commit 52ead255a2
2021-06-14 23:13:30
1 parent
6f18013Changed files (1)
lib
lib/std/comptime_string_map.zig
@@ -6,7 +6,7 @@
const std = @import("std.zig");
const mem = std.mem;
-/// Like ComptimeStringHashMap but optimized for small sets of disparate string keys.
+/// Comptime string map optimized for small sets of disparate string keys.
/// Works by separating the keys by length at comptime and only checking strings of
/// equal length at runtime.
///