1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-27 15:00:30 +02:00

Fix typo: wrap is not warp :)

This commit is contained in:
figec 2015-06-18 23:17:20 +03:00
parent 979b4e8be3
commit 22b8b965a1

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;