diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-27 19:42:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 19:42:31 +0100 |
commit | 964c14580c322cdbd529d03896de5cd8be4c8c2f (patch) | |
tree | 0b9b143f022efe7e31a184d0a14d804ca58c9680 /doc/classes | |
parent | 1f3d52eed7e2fb66d4f786eb5af9e54a38f429db (diff) | |
parent | 38a5d22079832955c4f6aba50441fff8f6bcfa55 (diff) |
Merge pull request #43790 from Chaosus/rename_ord_at
Renamed String.ord_at to unicode_at
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/String.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/classes/String.xml b/doc/classes/String.xml index fcc70d166e..65a5d4c982 100644 --- a/doc/classes/String.xml +++ b/doc/classes/String.xml @@ -547,15 +547,6 @@ <description> </description> </method> - <method name="ord_at"> - <return type="int"> - </return> - <argument index="0" name="at" type="int"> - </argument> - <description> - Returns the character code at position [code]at[/code]. - </description> - </method> <method name="pad_decimals"> <return type="String"> </return> @@ -878,6 +869,15 @@ Removes a given string from the end if it ends with it or leaves the string unchanged. </description> </method> + <method name="unicode_at"> + <return type="int"> + </return> + <argument index="0" name="at" type="int"> + </argument> + <description> + Returns the character code at position [code]at[/code]. + </description> + </method> <method name="xml_escape"> <return type="String"> </return> |