CBE: minor doc change

master
Noam Preil 2020-08-13 12:25:42 -04:00
parent 692f38c250
commit 34923e071e
No known key found for this signature in database
GPG Key ID: FC347E7C85BE8238
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}