Skip to content

Commit

Permalink
Fix double backslash error in the zk-regex compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Dec 7, 2024
1 parent 7002a21 commit 36efbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compiler/src/regex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ fn create_special_char_mappings() -> BTreeMap<&'static str, u8> {
("\\0", 0),
("\\\"", 34),
("\\'", 39),
("\\", 92),
("\\\\", 92),
("' '", 32),
]
.iter()
Expand Down

0 comments on commit 36efbdf

Please sign in to comment.