Skip to content

Commit

Permalink
fix a typo in TOML error message (#40428)
Browse files Browse the repository at this point in the history
* fix a typo in TOML error message

(cherry picked from commit e260f2b)
  • Loading branch information
KristofferC authored and staticfloat committed Dec 22, 2022
1 parent 4506f31 commit a8ea684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/toml_parser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const err_message = Dict(
ErrExpectedEqualAfterKey => "expected equal sign after key",
ErrNoTrailingDigitAfterDot => "expected digit after dot",
ErrOverflowError => "overflowed when parsing integer",
ErrInvalidUnicodeScalar => "invalid uncidode scalar",
ErrInvalidUnicodeScalar => "invalid unicode scalar",
ErrInvalidEscapeCharacter => "invalid escape character",
ErrUnexpectedEofExpectedValue => "unexpected end of file, expected a value"
)
Expand Down

0 comments on commit a8ea684

Please sign in to comment.