Skip to content

Commit

Permalink
Fix comment placement
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Jul 15, 2024
1 parent 80dda8a commit 309b0cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/literals.zig
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,9 @@ pub const IterativeStringParser = struct {
switch (c) {
'a', 'A' => {
self.index += codepoint.byte_len;
// might be a bug in RC, but matches its behavior
return .{ .codepoint = '\x08' };
}, // might be a bug in RC, but matches its behavior
},
'n' => {
self.index += codepoint.byte_len;
return .{ .codepoint = '\n' };
Expand Down

0 comments on commit 309b0cf

Please sign in to comment.