aboutsummaryrefslogtreecommitdiff
path: root/src/comptime_string_map.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/comptime_string_map.zig')
-rw-r--r--src/comptime_string_map.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comptime_string_map.zig b/src/comptime_string_map.zig
index 1c159d2e8..b19e2f5f8 100644
--- a/src/comptime_string_map.zig
+++ b/src/comptime_string_map.zig
@@ -8,7 +8,7 @@ const strings = @import("./string_immutable.zig");
///
/// `kvs` expects a list literal containing list literals or an array/slice of structs
/// where `.@"0"` is the `[]const u8` key and `.@"1"` is the associated value of type `V`.
-/// TODO: https://github.com/ziglang/zig/issues/4335
+
pub fn ComptimeStringMapWithKeyType(comptime KeyType: type, comptime V: type, comptime kvs_list: anytype) type {
const KV = struct {
key: []const KeyType,