u16string should be utf16string.
This commit is contained in:
Benson Muite 2022-11-29 21:56:28 +03:00 committed by GitHub
parent bcd6901dfa
commit f5271db481
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -411,7 +411,7 @@ Example of use:
```cpp
u16string utf16string = {0x41, 0x0448, 0x65e5, 0xd834, 0xdd1e};
u16string_view utf16stringview(u16string);
u16string_view utf16stringview(utf16string);
string u = utf16to8(utf16string);
assert (u.size() == 10);
```