corretected unit of UTF-16 from byte to bit

This commit is contained in:
Delet0r
2019-05-08 15:03:34 +02:00
committed by GitHub
parent 19c3036f7e
commit cb691100f1

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".