authorgravatar for bjorn.linse@gmail.comBjörn Linse <bjorn.linse@gmail.com> 2021-06-14 23:13:30+02:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2021-06-15 07:57:07+03:00
logac42503266f27af2a4528af3ff0f1ef2cfbfe766
treec483e6e0e432ba8202a900854192a65ed18e18bf
parentd2427e6490587c4d9cfb1b2dfb735c20967121db

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 @@...@@ -6,7 +6,7 @@
6const std = @import("std.zig");6const std = @import("std.zig");
7const mem = std.mem;7const 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.
10/// Works by separating the keys by length at comptime and only checking strings of10/// Works by separating the keys by length at comptime and only checking strings of
11/// equal length at runtime.11/// equal length at runtime.
12///12///