Commit 34923e071e

Noam Preil <noam@pixelhero.dev>
2020-08-13 18:25:42
CBE: minor doc change
1 parent 692f38c
Changed files (1)
src-self-hosted
codegen
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);
 }