Skip to content

Commit 66b035d

Browse files
committed
fixed typo in error reporting
1 parent d59ebd5 commit 66b035d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/novah/frontend/Lexer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ class Lexer(input: Iterator<Char>) : Iterator<Spanned<Token>> {
716716
try {
717717
return BigDecimal(this)
718718
} catch (e: NumberFormatException) {
719-
lexError("Invalid number format for bigint: `$this`")
719+
lexError("Invalid number format for big decimal: `$this`")
720720
}
721721
}
722722

0 commit comments

Comments
 (0)