diff options
author | Kim Alvefur <zash@zash.se> | 2021-03-18 23:16:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-03-18 23:16:41 +0100 |
commit | d18097fb6700ede8bdb47388e51e0850d0d828f6 (patch) | |
tree | 8f63224754b87b595412c35fd88013bc299ec11f /teal-src/util/stanza.d.tl | |
parent | 576b43151c407e03525623a143024bda8926e640 (diff) | |
download | prosody-d18097fb6700ede8bdb47388e51e0850d0d828f6.tar.gz prosody-d18097fb6700ede8bdb47388e51e0850d0d828f6.zip |
teal: Use new integer support in Teal 0.13.0
Diffstat (limited to 'teal-src/util/stanza.d.tl')
-rw-r--r-- | teal-src/util/stanza.d.tl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/teal-src/util/stanza.d.tl b/teal-src/util/stanza.d.tl index 8a077087..b96f9ff3 100644 --- a/teal-src/util/stanza.d.tl +++ b/teal-src/util/stanza.d.tl @@ -26,7 +26,7 @@ local record lib get_child_text : function ( stanza_t, string, string ) : string child_with_name : function ( stanza_t, string, string ) : stanza_t child_with_ns : function ( stanza_t, string, string ) : stanza_t - children : function ( stanza_t ) : children_iter, stanza_t, number + children : function ( stanza_t ) : children_iter, stanza_t, integer childtags : function ( stanza_t, string, string ) : childtags_iter maptags : function ( stanza_t, maptags_cb ) : stanza_t find : function ( stanza_t, string ) : stanza_t | string @@ -36,7 +36,7 @@ local record lib pretty_top_tag : function ( stanza_t ) : string get_error : function ( stanza_t ) : string, string, string, stanza_t - indent : function ( stanza_t, number, string ) : stanza_t + indent : function ( stanza_t, integer, string ) : stanza_t end record serialized_stanza_t |