From 1fe6a34f699f64dc7ac6597f337c61d04c7de812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Linse?= Date: Mon, 14 Jun 2021 23:13:30 +0200 Subject: [PATCH] std: don't reference non-existant ComptimeStringHashMap type --- lib/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 index 1dca59e997..0bf86167f9 100644 --- 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. ///