Fix typo: wrap is not warp :)

This commit is contained in:
figec 2015-06-18 23:17:20 +03:00
parent 979b4e8be3
commit 22b8b965a1
1 changed files with 1 additions and 1 deletions

View File

@ -433,7 +433,7 @@ inline std::string wrap_rows(const std::string &from,
if (character_idx > 0 && character_idx % row_len == 0)
need_to_wrap = true;
if (!IS_UTF8_MULTB_INNER(from[i])) {
// Warp string if needed before next char started
// Wrap string if needed before next char started
if (need_to_wrap) {
to += '\n';
need_to_wrap = false;