From 5fc0a068d097a4ed27c3c67ea9ca2a4c174af404 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Tue, 7 Jan 2020 08:29:10 +0800 Subject: [PATCH] Rewording RichTextLabel::remove_line documentation --- doc/classes/RichTextLabel.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ - 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].