util.stanza: stanza:matched_children() -> stanza:matching_tags()
authorMatthew Wild <mwild1@gmail.com>
Mon, 30 Aug 2010 04:55:12 +0100
changeset 3478 4621c92d2368
parent 3477 6350b114e0e4
child 3479 f68198c2f68f
util.stanza: stanza:matched_children() -> stanza:matching_tags()
util/stanza.lua
--- a/util/stanza.lua	Mon Aug 30 04:53:41 2010 +0100
+++ b/util/stanza.lua	Mon Aug 30 04:55:12 2010 +0100
@@ -126,7 +126,7 @@
 		end, self, i;
 end
 
-function stanza_mt:matched_children(name, xmlns)
+function stanza_mt:matching_tags(name, xmlns)
 	xmlns = xmlns or self.attr.xmlns;
 	local tags = self.tags;
 	local start_i, max_i = 1, #tags;