Skip to content

Commit

Permalink
fixed typo in error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
stackoverflow committed Jun 18, 2022
1 parent d59ebd5 commit 66b035d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/novah/frontend/Lexer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ class Lexer(input: Iterator<Char>) : Iterator<Spanned<Token>> {
try {
return BigDecimal(this)
} catch (e: NumberFormatException) {
lexError("Invalid number format for bigint: `$this`")
lexError("Invalid number format for big decimal: `$this`")
}
}

Expand Down

0 comments on commit 66b035d

Please sign in to comment.