You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple string a-1] fails to parse saying that "a" is unexpected, while expected [, whitespaces, letter or digit, -, .. The "a" letter fits "letter or digit".
P. S. It also says the error is at position 3.
The text was updated successfully, but these errors were encountered:
Err(Errors{position:3,errors:[Expected(Token('[',),),Expected(Static("whitespaces",),),Expected(Static("letter or digit",),),Expected(Token('-',),),Expected(Token('.',),),Unexpected(Token('a',),),],},)
Everything except the unexpected token a looks correct.
A simple string
a-1]
fails to parse saying that "a" is unexpected, while expected[
, whitespaces, letter or digit,-
,.
. The "a" letter fits "letter or digit".P. S. It also says the error is at position 3.
The text was updated successfully, but these errors were encountered: