Skip to content

Commit

Permalink
Allow capital letters after first letter.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvcisback committed Sep 20, 2022
1 parent 7892da8 commit 03d17ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtl/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
const_or_unbound = const / "inf" / id
AP = ~r"[a-z_][a-z_\\d]*"
AP = ~r"[a-z_][a-zA-Z_\\d]*"
bot = "FALSE"
top = "TRUE"
Expand Down

0 comments on commit 03d17ca

Please sign in to comment.