Skip to content

Commit

Permalink
Merge pull request #79 from zkemail/feat/fix-double-backslash
Browse files Browse the repository at this point in the history
Fix double backslash error in the zk-regex compiler
  • Loading branch information
DimiDumo authored Dec 13, 2024
2 parents 7aa69e1 + 36efbdf commit 9661ade
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 9661ade

Please sign in to comment.