zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ac42503266f27af2a4528af3ff0f1ef2cfbfe766 (tree)
parent d2427e6490587c4d9cfb1b2dfb735c20967121db
Author: Björn Linse <bjorn.linse@gmail.com>
Date:   Mon, 14 Jun 2021 23:13:30 +0200

std: don't reference non-existant ComptimeStringHashMap type

Diffstat:
Mlib/std/comptime_string_map.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/comptime_string_map.zig b/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. ///