diff options
| author | Ignacio Etcheverry | 2016-10-01 00:48:38 +0200 |
|---|---|---|
| committer | GitHub | 2016-10-01 00:48:38 +0200 |
| commit | f30602c67a86bce393c5e67551755e0a8b3f0dd4 (patch) | |
| tree | a37dd63fcf16a0776161abf1cdf7e52f9d99f52c /core/ustring.cpp | |
| parent | dabcabe9815612c7ef1c99909b14d632f13df165 (diff) | |
| parent | c333659ebcdf41851761ebd3d8edc8e5e822164e (diff) | |
| download | godot-f30602c67a86bce393c5e67551755e0a8b3f0dd4.tar.gz godot-f30602c67a86bce393c5e67551755e0a8b3f0dd4.tar.zst godot-f30602c67a86bce393c5e67551755e0a8b3f0dd4.zip | |
Merge pull request #6652 from volzhs/word-wrap
Fix typo for word_wrap
Diffstat (limited to 'core/ustring.cpp')
| -rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 0d887210c..f7dcba6b1 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3173,7 +3173,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; |
