diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-07 08:08:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 08:08:19 +0100 |
commit | 84b5ac8640d4e22627e5c7f27abcc19fadbf1724 (patch) | |
tree | bb078aab7dbea2a4a617cdfb4da960111cfb75f0 /doc/classes | |
parent | 26e8fb855febb09583f9c6fe176c1846f39b3be5 (diff) | |
parent | 5fc0a068d097a4ed27c3c67ea9ca2a4c174af404 (diff) |
Merge pull request #34878 from timothyqiu/rtl-doc-wording
Rewording RichTextLabel::remove_line documentation
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/RichTextLabel.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/RichTextLabel.xml b/doc/classes/RichTextLabel.xml index 0e53490681..c3fb226b6a 100644 --- a/doc/classes/RichTextLabel.xml +++ b/doc/classes/RichTextLabel.xml @@ -251,7 +251,8 @@ <argument index="0" name="line" type="int"> </argument> <description> - Removes the [code]line[/code]th line of content from the label. Returns [code]true[/code] if the line exists. + Removes a line of content from the label. Returns [code]true[/code] if the line exists. + The [code]line[/code] argument is the index of the line to remove, it can take values in the interval [code][0, get_line_count() - 1][/code]. </description> </method> <method name="scroll_to_line"> |