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 committed Apr 11, 2021
1 parent 639325e commit f2392e7
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 f2392e7

Please sign in to comment.