diff options
Diffstat (limited to 'runtime/utf_test.cc')
-rw-r--r-- | runtime/utf_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/utf_test.cc b/runtime/utf_test.cc index 5239e40540..c67879b427 100644 --- a/runtime/utf_test.cc +++ b/runtime/utf_test.cc @@ -353,7 +353,7 @@ TEST_F(UtfTest, ExhaustiveBidirectionalCodePointCheck) { if (codePoint <= 0xffff) { if (codePoint >= 0xd800 && codePoint <= 0xdfff) { // According to the Unicode standard, no character will ever - // be assigned to these code points, and they can not be encoded + // be assigned to these code points, and they cannot be encoded // into either utf-16 or utf-8. continue; } |