Permalink
Browse files

Fixing minor grammar bug

  • Loading branch information...
1 parent a2a98df commit b378b6ba5e01c9be4abece683b6215d588f51f4f @scottfrazer scottfrazer committed Nov 24, 2015
Showing with 1 addition and 1 deletion.
  1. +1 −1 grammar.hgr
View
@@ -217,7 +217,7 @@ grammar {
for regex, c in ctx.user_context['replacements'].items():
source_string = regex.sub(chr(c), source_string)
- source_string = source_string.replace("\u005C\u005C", "\u005C")
+ source_string = source_string.replace("\\\\", "\\")
for regex, base in ctx.user_context['escapes'].items():
for escape_sequence, number in regex.findall(source_string):

0 comments on commit b378b6b

Please sign in to comment.