about summary refs log tree commit diff stats
path: root/src/html
diff options
context:
space:
mode:
Diffstat (limited to 'src/html')
-rw-r--r--src/html/dom.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/dom.nim b/src/html/dom.nim
index 41a4335a..bc09ec35 100644
--- a/src/html/dom.nim
+++ b/src/html/dom.nim
@@ -318,7 +318,7 @@ type
   ]
 
 template toset(ts: openarray[TagType]): set[TagType] =
-  var tags: set[TagType]
+  var tags: system.set[TagType]
   for tag in ts:
     tags.incl(tag)
   tags