diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-03-30 12:47:15 +0200 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-03-30 12:47:15 +0200 |
commit | 6b64b26f0ef8be16741da5f4359c4014dc5f60b8 (patch) | |
tree | 339571ba9cfa2c52bc97fbefad8d1df08b06b2f7 | |
parent | f293503a9857fae6b0c1db45f9d68f2cccd3b5fa (diff) | |
parent | ef08fed277f457249ae4058f2a391bc9e2ebe5bb (diff) |
Merge pull request #4156 from JoshuaGrams/match-docs
doc/base/classes.xml: String.match, Node.find_node
-rw-r--r-- | doc/base/classes.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 0a4ed7c845..b6457f0d89 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -19650,6 +19650,7 @@ Example: (content-length:12), (Content-Type:application/json; charset=UTF-8) <argument index="2" name="owned" type="bool" default="true"> </argument> <description> + Find a descendant of this node whose name matches [code]mask[/code] as in [method String.match] (i.e. case sensitive, but '*' matches zero or more characters and '?' matches any single character except '.'). Note that it does not match against the full path, just against individual node names. </description> </method> <method name="has_node_and_resource" qualifiers="const"> @@ -34891,7 +34892,7 @@ This method controls whether the position between two cached points is interpola <argument index="0" name="expr" type="String"> </argument> <description> - Do a simple expression matching, using ? and * wildcards. + Do a simple expression match, where '*' matches zero or more arbitrary characters and '?' matches any single character except '.'. </description> </method> <method name="matchn"> @@ -34900,7 +34901,7 @@ This method controls whether the position between two cached points is interpola <argument index="0" name="expr" type="String"> </argument> <description> - Do a simple, case insensitive, expression matching, using ? and * wildcards. + Do a simple case insensitive expression match, using ? and * wildcards (see [method match]). </description> </method> <method name="md5_buffer"> |