diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2021-01-10 15:13:34 +0200 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2021-01-10 15:13:59 +0200 |
commit | a2c82bbf5f500204355f48228e08ea207c8a14c0 (patch) | |
tree | 109d074a71d0715c0c30062df211b67d4ff1b1a9 /doc/classes | |
parent | 5a2747d642e55d199a80d773451a851ffe6af2cc (diff) |
Clarify `lstrip()/rstrip()` methods in `String` for removed characters
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/String.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/classes/String.xml b/doc/classes/String.xml index 79f21a0e70..fcc70d166e 100644 --- a/doc/classes/String.xml +++ b/doc/classes/String.xml @@ -406,7 +406,8 @@ <argument index="0" name="chars" type="String"> </argument> <description> - Returns a copy of the string with characters removed from the left. + Returns a copy of the string with characters removed from the left. The [code]chars[/code] argument is a string specifying the set of characters to be removed. + [b]Note:[/b] The [code]chars[/code] is not a prefix. See [method trim_prefix] method that will remove a single prefix string rather than a set of characters. </description> </method> <method name="match"> @@ -698,7 +699,8 @@ <argument index="0" name="chars" type="String"> </argument> <description> - Returns a copy of the string with characters removed from the right. + Returns a copy of the string with characters removed from the right. The [code]chars[/code] argument is a string specifying the set of characters to be removed. + [b]Note:[/b] The [code]chars[/code] is not a suffix. See [method trim_suffix] method that will remove a single suffix string rather than a set of characters. </description> </method> <method name="sha1_buffer"> |