Typo
This commit is contained in:
@@ -26,12 +26,12 @@ type
|
|||||||
Parser* = ref object
|
Parser* = ref object
|
||||||
state*: ParserState
|
state*: ParserState
|
||||||
tokens*: seq[ParserToken]
|
tokens*: seq[ParserToken]
|
||||||
ParseErrorKind* = enum
|
ParserErrorKind* = enum
|
||||||
choiceMismatchErr
|
choiceMismatchErr
|
||||||
charMismatchErr
|
charMismatchErr
|
||||||
endOfStringErr
|
endOfStringErr
|
||||||
ParserError* = ref object
|
ParserError* = ref object
|
||||||
kind*: ParseErrorKind
|
kind*: ParserErrorKind
|
||||||
unexpected*: string
|
unexpected*: string
|
||||||
expected*: string
|
expected*: string
|
||||||
index*: int
|
index*: int
|
||||||
|
|||||||
Reference in New Issue
Block a user