Skip to content

Commit

Permalink
Merge pull request #14554 from JuliaLang/nl/unicodeerror
Browse files Browse the repository at this point in the history
Fix parentheses in two UnicodeError messages
  • Loading branch information
nalimilan committed Jan 4, 2016
2 parents c70ab26 + 0e5a3a1 commit 01df9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/unicode/UnicodeError.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const UTF_ERR_CONT = "invalid UTF-8 sequence starting at index <<1>
const UTF_ERR_LONG = "invalid UTF-8 sequence, overlong encoding starting at index <<1>> (0x<<2>>)"
const UTF_ERR_NOT_LEAD = "not a leading Unicode surrogate code unit at index <<1>> (0x<<2>>)"
const UTF_ERR_NOT_TRAIL = "not a trailing Unicode surrogate code unit at index <<1>> (0x<<2>>)"
const UTF_ERR_NOT_SURROGATE = "not a valid Unicode surrogate code unit at index <<1>> (0x<<2>>"
const UTF_ERR_NOT_SURROGATE = "not a valid Unicode surrogate code unit at index <<1>> (0x<<2>>)"
const UTF_ERR_MISSING_SURROGATE = "missing trailing Unicode surrogate code unit after index <<1>> (0x<<2>>)"
const UTF_ERR_INVALID = "invalid Unicode character starting at index <<1>> (0x<<2>> > 0x10ffff)"
const UTF_ERR_SURROGATE = "surrogate encoding not allowed in UTF-8 or UTF-32, at index <<1>> (0x<<2>>)"
Expand Down

0 comments on commit 01df9b1

Please sign in to comment.