2
0
mirror of https://github.com/godotengine/godot.git synced 2025-04-25 01:48:08 +08:00

Merge pull request from Chaosus/doc_string_reverse

Add a note for `String::reverse` to warn about its implementation
This commit is contained in:
Rémi Verschelde 2024-04-30 17:03:48 +02:00
commit 4455747356
No known key found for this signature in database
GPG Key ID: C3336907360768E1
2 changed files with 2 additions and 2 deletions

@ -747,7 +747,7 @@
<method name="reverse" qualifiers="const">
<return type="String" />
<description>
Returns the copy of this string in reverse order.
Returns the copy of this string in reverse order. This operation works on unicode codepoints, rather than sequences of codepoints, and may break things like compound letters or emojis.
</description>
</method>
<method name="rfind" qualifiers="const">

@ -648,7 +648,7 @@
<method name="reverse" qualifiers="const">
<return type="String" />
<description>
Returns the copy of this string in reverse order.
Returns the copy of this string in reverse order. This operation works on unicode codepoints, rather than sequences of codepoints, and may break things like compound letters or emojis.
</description>
</method>
<method name="rfind" qualifiers="const">