summaryrefslogtreecommitdiff
path: root/core/string
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-04-01 13:32:22 +0200
committerGitHub <noreply@github.com>2021-04-01 13:32:22 +0200
commit4b6e9f315739c4400e3c2d27cd72028779bce1e5 (patch)
tree0625f98287fd20f0ffd6002b4c8ee4f81e068bb8 /core/string
parent7db85fffb50ef98dbf175189fba17a4d7dc85f5d (diff)
parent755c70b871c659df2d7c3a003593f38775dd7b5d (diff)
Merge pull request #46991 from madmiraal/rename-invert-reverse
Rename Array.invert() to Array.reverse()
Diffstat (limited to 'core/string')
-rw-r--r--core/string/ustring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/string/ustring.cpp b/core/string/ustring.cpp
index 28228e4a83..05c80296c2 100644
--- a/core/string/ustring.cpp
+++ b/core/string/ustring.cpp
@@ -1138,7 +1138,7 @@ Vector<String> String::rsplit(const String &p_splitter, bool p_allow_empty, int
remaining_len = left_edge;
}
- ret.invert();
+ ret.reverse();
return ret;
}