From 34923e071e6f9f46ab8abb645929b975ef9ba7ff Mon Sep 17 00:00:00 2001 From: Noam Preil Date: Thu, 13 Aug 2020 12:25:42 -0400 Subject: [PATCH] CBE: minor doc change --- src-self-hosted/codegen/c.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-self-hosted/codegen/c.zig b/src-self-hosted/codegen/c.zig index f0d3d8367a..9a7a4888be 100644 --- a/src-self-hosted/codegen/c.zig +++ b/src-self-hosted/codegen/c.zig @@ -11,8 +11,8 @@ const C = link.File.C; const Decl = Module.Decl; const mem = std.mem; -/// Maps a name from Zig source to C. This will always give the same output for -/// any given input. +/// Maps a name from Zig source to C. Currently, this will always give the same +/// output for any given input, sometimes resulting in broken identifiers. fn map(allocator: *std.mem.Allocator, name: []const u8) ![]const u8 { return allocator.dupe(u8, name); }