Skip to content

Commit

Permalink
Remove superfluous opener/closers
Browse files Browse the repository at this point in the history
Spotted by tbrowder++
  • Loading branch information
lizmat committed Feb 19, 2023
1 parent 35b3029 commit 30593cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HLL/Grammar.nqp
@@ -1,7 +1,7 @@
use QRegex;

grammar HLL::Grammar {
my $brackets := '<>[](){}' ~ "\x[0028]\x[0029]\x[003C]\x[003E]\x[005B]\x[005D]" ~
my $brackets := "\x[0028]\x[0029]\x[003C]\x[003E]\x[005B]\x[005D]" ~
"\x[007B]\x[007D]\x[00AB]\x[00BB]\x[0F3A]\x[0F3B]\x[0F3C]\x[0F3D]\x[169B]\x[169C]" ~
"\x[2018]\x[2019]\x[201A]\x[2019]\x[201B]\x[2019]\x[201C]\x[201D]\x[201E]\x[201D]" ~
"\x[201F]\x[201D]\x[2039]\x[203A]\x[2045]\x[2046]\x[207D]\x[207E]\x[208D]\x[208E]" ~
Expand Down

0 comments on commit 30593cd

Please sign in to comment.