gml: fix bad rename.

locals-and-roots
Doug Coleman 2016-06-26 02:06:59 -07:00
parent b34b8522af
commit a10475bec0
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ Digits = Digit+
Sign = ('+' => [[ first ]]|'-' => [[ first ]])?
StopChar = ('('|')'|$['|']'|'{'|'}'|'/'|'/'|';'|':'|'!'|'.')
StopChar = ('('|')'|'['|']'|'{'|'}'|'/'|'/'|';'|':'|'!'|'.')
Space = [ \t\n\r]
@ -85,7 +85,7 @@ Name = NameChar+ => [[ >string ]]
Comment = ('%' (!(Newline) .)* (Newline|!(.))) => [[ <comment> ]]
ArrayStart = $[' => [[ marker ]]
ArrayStart = '[' => [[ marker ]]
ArrayEnd = ']' => [[ exec" ]" ]]