authorgravatar for bjorn.linse@gmail.comBjörn Linse <bjorn.linse@gmail.com> 2021-06-14 23:13:30+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2021-06-15 12:14:04+02:00
log1fe6a34f699f64dc7ac6597f337c61d04c7de812
tree06ba4c9273cd155aad59061b820a33114eb80eb2
parent6362b82497731a64b8ceae6af577b50660a87fec

std: don't reference non-existant ComptimeStringHashMap type


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/comptime_string_map.zig+1-1
......@@ -6,7 +6,7 @@
66const std = @import("std.zig");
77const mem = std.mem;
88
9/// Like ComptimeStringHashMap but optimized for small sets of disparate string keys.
9/// Comptime string map optimized for small sets of disparate string keys.
1010/// Works by separating the keys by length at comptime and only checking strings of
1111/// equal length at runtime.
1212///