mirror of https://github.com/axmolengine/axmol.git
issue #4693: correct comment
This commit is contained in:
parent
53963a2441
commit
4da24dfade
|
@ -692,7 +692,7 @@ public:
|
||||||
* enumerateChildren("//MyName", ...): This searches the root's children recursively and matches any node with the name `MyName`.
|
* enumerateChildren("//MyName", ...): This searches the root's children recursively and matches any node with the name `MyName`.
|
||||||
* enumerateChildren("[[:alnum:]]+", ...): This search string matches every node of its children.
|
* enumerateChildren("[[:alnum:]]+", ...): This search string matches every node of its children.
|
||||||
* enumerateChildren("/MyName", ...): This searches the node tree and matches the parent node of every node named `MyName`.
|
* enumerateChildren("/MyName", ...): This searches the node tree and matches the parent node of every node named `MyName`.
|
||||||
* enumerateChildren("A([:digit:])", ...): This searches the node's children and returns any child named `A0`, `A1`, ..., `A9`
|
* enumerateChildren("A[[:digit:]]", ...): This searches the node's children and returns any child named `A0`, `A1`, ..., `A9`
|
||||||
* enumerateChildren("Abby/Normal", ...): This searches the node's grandchildren and returns any node whose name is `Normal`
|
* enumerateChildren("Abby/Normal", ...): This searches the node's grandchildren and returns any node whose name is `Normal`
|
||||||
* and whose parent is named `Abby`.
|
* and whose parent is named `Abby`.
|
||||||
* enumerateChildren("//Abby/Normal", ...): This searches the node tree and returns any node whose name is `Normal` and whose
|
* enumerateChildren("//Abby/Normal", ...): This searches the node tree and returns any node whose name is `Normal` and whose
|
||||||
|
|
Loading…
Reference in New Issue