Skip to content

Commit

Permalink
A character should be a single character, not many
Browse files Browse the repository at this point in the history
Fixes #15
  • Loading branch information
jaybosamiya committed Nov 22, 2023
1 parent 4e8b5a4 commit 4490ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/verus.pest
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ raw_byte_string = @{
}

char = @{
"'" ~ ("\\'" | !"'" ~ ANY)* ~ "'"
"'" ~ ("\\'" | !"'" ~ ANY) ~ "'"
}

byte = @{
Expand Down

0 comments on commit 4490ebe

Please sign in to comment.