From f5271db481649cc4e551830254556fe8fa16fa8c Mon Sep 17 00:00:00 2001 From: Benson Muite Date: Tue, 29 Nov 2022 21:56:28 +0300 Subject: [PATCH] Typo fix u16string should be utf16string. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59277c8..11f156b 100644 --- a/README.md +++ b/README.md @@ -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); ```