fix(uplc): more whitespace characters

This commit is contained in:
rvcas 2023-11-15 01:05:37 -05:00 committed by Lucas
parent 58d98b3325
commit 3f8f624a7b
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ peg::parser! {
String::from_iter(i) String::from_iter(i)
} }
rule _ = [' ' | '\n'] / "--" $([^ '\n']*) "\n" rule _ = [' ' | '\n' | '\r' | '\t'] / "--" $([^ '\n']*) "\n"
} }
} }