Skip to content

Commit

Permalink
Fixed comment on manual Unicode conversions.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 23, 2024
1 parent 1d20108 commit cf424e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/millijson/millijson.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ std::string extract_string(Input& input) {
}
}

// Converting manually from UTF-16 to UTF-8. We only allow
// Manually convert Unicode code points to UTF-8. We only allow
// 3 bytes at most because there's only 4 hex digits in JSON.
if (mb <= 127) {
output += static_cast<char>(mb);
Expand Down

0 comments on commit cf424e7

Please sign in to comment.