summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-08 09:22:27 +0200
committerGitHub <noreply@github.com>2022-07-08 09:22:27 +0200
commit6a34b038d5352c0fd40a8f0dfc1969cd31a96073 (patch)
tree44827370d8cf4cbfe8e5d158d3508486bc8fce02
parent7d3ff927dea31b75cf9801bdcbcf0e0cc8e975b0 (diff)
parentdf5a9228808497f19b5bddf7b58d2a532cd990d0 (diff)
Merge pull request #42708 from drentsoft/improved_treeitem_docs_branch
-rw-r--r--doc/classes/TreeItem.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml
index 804b8dddd9..fbba1147a2 100644
--- a/doc/classes/TreeItem.xml
+++ b/doc/classes/TreeItem.xml
@@ -223,14 +223,14 @@
<method name="get_next" qualifiers="const">
<return type="TreeItem" />
<description>
- Returns the next TreeItem in the tree or a null object if there is none.
+ Returns the next sibling TreeItem in the tree or a null object if there is none.
</description>
</method>
<method name="get_next_visible">
<return type="TreeItem" />
<argument index="0" name="wrap" type="bool" default="false" />
<description>
- Returns the next visible TreeItem in the tree or a null object if there is none.
+ Returns the next visible sibling TreeItem in the tree or a null object if there is none.
If [code]wrap[/code] is enabled, the method will wrap around to the first visible element in the tree when called on the last visible element, otherwise it returns [code]null[/code].
</description>
</method>
@@ -243,14 +243,14 @@
<method name="get_prev">
<return type="TreeItem" />
<description>
- Returns the previous TreeItem in the tree or a null object if there is none.
+ Returns the previous sibling TreeItem in the tree or a null object if there is none.
</description>
</method>
<method name="get_prev_visible">
<return type="TreeItem" />
<argument index="0" name="wrap" type="bool" default="false" />
<description>
- Returns the previous visible TreeItem in the tree or a null object if there is none.
+ Returns the previous visible sibling TreeItem in the tree or a null object if there is none.
If [code]wrap[/code] is enabled, the method will wrap around to the last visible element in the tree when called on the first visible element, otherwise it returns [code]null[/code].
</description>
</method>