# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1680297547 -7200
# Node ID 9ed4a8502c54a0283c41c6d884646496fe3681f4
# Parent  94f8fce2d99babc4529ec666f0641a82405ea0dd
util.set: Add missing remove function in Teal spec

diff -r 94f8fce2d99b -r 9ed4a8502c54 teal-src/prosody/util/set.d.tl
--- a/teal-src/prosody/util/set.d.tl	Fri Mar 31 23:18:49 2023 +0200
+++ b/teal-src/prosody/util/set.d.tl	Fri Mar 31 23:19:07 2023 +0200
@@ -4,6 +4,7 @@
 		contains : function<T> (Set<T>, T) : boolean
 		contains_set : function<T> (Set<T>, Set<T>) : boolean
 		items :  function<T> (Set<T>) : function<T> (Set<T>, T) : T
+		remove : function<T> (Set<T>, T)
 		add_list : function<T> (Set<T>, { T })
 		include : function<T> (Set<T>, Set<T>)
 		exclude : function<T> (Set<T>, Set<T>)