From b199c0d6bb633d9d17055a0bf085dd71439122dd Mon Sep 17 00:00:00 2001 From: Nemanja Trifunovic Date: Fri, 24 Nov 2023 18:45:51 -0500 Subject: [PATCH] A minor fix to README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf0c3bc..3dbe4ac 100644 --- a/README.md +++ b/README.md @@ -736,7 +736,8 @@ u16bit_iterator utf8to16 (octet_iterator start, octet_iterator end, u16bit_itera `octet_iterator`: an input iterator. `u16bit_iterator`: an output iterator. -`start`: an iterator pointing to the beginning of the UTF-8 encoded string to convert. < br /> `end`: an iterator pointing to pass-the-end of the UTF-8 encoded string to convert. +`start`: an iterator pointing to the beginning of the UTF-8 encoded string to convert. +`end`: an iterator pointing to pass-the-end of the UTF-8 encoded string to convert. `result`: an output iterator to the place in the UTF-16 string where to append the result of conversion. Return value: An iterator pointing to the place after the appended UTF-16 string. @@ -1950,7 +1951,8 @@ template u16bit_iterator utf8to16 (octet_iterator start, octet_iterator end, u16bit_iterator result); ``` -`start`: an iterator pointing to the beginning of the UTF-8 encoded string to convert. < br /> `end`: an iterator pointing to pass-the-end of the UTF-8 encoded string to convert. +`start`: an iterator pointing to the beginning of the UTF-8 encoded string to convert. +`end`: an iterator pointing to pass-the-end of the UTF-8 encoded string to convert. `result`: an output iterator to the place in the UTF-16 string where to append the result of conversion. Return value: An iterator pointing to the place after the appended UTF-16 string.