Merge pull request #1518 from Delet0r/patch-1

corretected unit of UTF-16 from byte to bit
This commit is contained in:
Alex Crichton
2019-05-08 07:02:15 -07:00
committed by GitHub

View File

@ -25,7 +25,7 @@ with handles to JavaScript string values, use the `js_sys::JsString` type.
Strings in JavaScript are encoded as UTF-16, but with one major exception: they Strings in JavaScript are encoded as UTF-16, but with one major exception: they
can contain unpaired surrogates. For some Unicode characters UTF-16 uses two can contain unpaired surrogates. For some Unicode characters UTF-16 uses two
16-byte values. These are called "surrogate pairs" because they always come in 16-bit values. These are called "surrogate pairs" because they always come in
pairs. In JavaScript, it is possible for these surrogate pairs to be missing the pairs. In JavaScript, it is possible for these surrogate pairs to be missing the
other half, creating an "unpaired surrogate". other half, creating an "unpaired surrogate".