authorgravatar for noam@pixelhero.devNoam Preil <noam@pixelhero.dev> 2020-08-13 12:25:42-04:00
committergravatar for noam@pixelhero.devNoam Preil <noam@pixelhero.dev> 2020-08-16 20:32:50-04:00
log34923e071e6f9f46ab8abb645929b975ef9ba7ff
tree42e844d0791643618cf57fc33de7227d393aa731
parent692f38c2509da047e8be15fd7a932aa204f33fd3
signature Commit is signed but in an unrecognized format.

CBE: minor doc change


1 files changed, 2 insertions(+), 2 deletions(-)

  • src-self-hosted
src-self-hosted/codegen/c.zig+2-2
......@@ -11,8 +11,8 @@ const C = link.File.C;
1111const Decl = Module.Decl;
1212const mem = std.mem;
1313
14/// Maps a name from Zig source to C. This will always give the same output for
15/// any given input.
14/// Maps a name from Zig source to C. Currently, this will always give the same
15/// output for any given input, sometimes resulting in broken identifiers.
1616fn map(allocator: *std.mem.Allocator, name: []const u8) ![]const u8 {
1717 return allocator.dupe(u8, name);
1818}