about summary refs log tree commit diff stats
path: root/src/html/chadombuilder.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/chadombuilder.nim')
-rw-r--r--src/html/chadombuilder.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/html/chadombuilder.nim b/src/html/chadombuilder.nim
index da10af20..ad8f7f36 100644
--- a/src/html/chadombuilder.nim
+++ b/src/html/chadombuilder.nim
@@ -3,6 +3,7 @@ import options
 import streams
 
 import html/dom
+import js/error
 import js/javascript
 import types/url
 
@@ -204,7 +205,7 @@ proc newDOMParser(): DOMParser {.jsctor.} =
   new(result)
 
 proc parseFromString(ctx: JSContext, parser: DOMParser, str, t: string):
-    Result[Document, JSError] {.jsfunc.} =
+    JSResult[Document] {.jsfunc.} =
   case t
   of "text/html":
     let global = JS_GetGlobalObject(ctx)