Allow capital letters after first letter.

This commit is contained in:
Marcell Vazquez-Chanlatte 2022-09-19 22:01:25 -07:00
parent 7892da8db2
commit 03d17ca51f
No known key found for this signature in database
GPG key ID: 5F0B9983ED00A2AF

View file

@ -44,7 +44,7 @@ interval = "[" __ const_or_unbound __ "," __ const_or_unbound __ "]"
const_or_unbound = const / "inf" / id const_or_unbound = const / "inf" / id
AP = ~r"[a-z_][a-z_\\d]*" AP = ~r"[a-z_][a-zA-Z_\\d]*"
bot = "FALSE" bot = "FALSE"
top = "TRUE" top = "TRUE"