1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-09 12:50:35 +00:00

Fix typo for word_wrap

(cherry picked from commit c333659ebc)
This commit is contained in:
volzhs
2016-09-30 03:28:05 +09:00
committed by Rémi Verschelde
parent 721599c797
commit 73e7ccabf5
4 changed files with 5 additions and 5 deletions

View File

@@ -3178,7 +3178,7 @@ bool String::is_valid_identifier() const {
//kind of poor should be rewritten properly
String String::world_wrap(int p_chars_per_line) const {
String String::word_wrap(int p_chars_per_line) const {
int from=0;
int last_space=0;