summaryrefslogtreecommitdiffstats
path: root/thirdparty/icu4c/common/ucnv_err.cpp
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2021-04-22 15:08:59 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2021-04-22 16:56:53 +0300
commitb56241f22f96826ef9ef38cf7e4312b899f8e241 (patch)
treed12402a7b6881fe6f1f8c33228d5b1054c7942f0 /thirdparty/icu4c/common/ucnv_err.cpp
parent77a876c6e1c9eb60abbd9ad6f6ba6d9bc0af14e1 (diff)
downloadredot-engine-b56241f22f96826ef9ef38cf7e4312b899f8e241.tar.gz
ICU: Update to version 69.1, improve ICU data export process.
Diffstat (limited to 'thirdparty/icu4c/common/ucnv_err.cpp')
-rw-r--r--thirdparty/icu4c/common/ucnv_err.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/icu4c/common/ucnv_err.cpp b/thirdparty/icu4c/common/ucnv_err.cpp
index 6b738face5..e1f2b934aa 100644
--- a/thirdparty/icu4c/common/ucnv_err.cpp
+++ b/thirdparty/icu4c/common/ucnv_err.cpp
@@ -321,7 +321,7 @@ UCNV_FROM_U_CALLBACK_ESCAPE (
case UCNV_PRV_ESCAPE_CSS2:
valueString[valueStringLength++] = (UChar) UNICODE_RS_CODEPOINT; /* adding \ */
valueStringLength += uprv_itou (valueString + valueStringLength, VALUE_STRING_LENGTH - valueStringLength, codePoint, 16, 0);
- /* Always add space character, becase the next character might be whitespace,
+ /* Always add space character, because the next character might be whitespace,
which would erroneously be considered the termination of the escape sequence. */
valueString[valueStringLength++] = (UChar) UNICODE_SPACE_CODEPOINT;
break;