about summary refs log tree commit diff stats
path: root/src/html/entity.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/html/entity.nim')
-rw-r--r--src/html/entity.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html/entity.nim b/src/html/entity.nim
index 72c5c452..775ea94f 100644
--- a/src/html/entity.nim
+++ b/src/html/entity.nim
@@ -1,8 +1,8 @@
 import json
 
-import ../utils/radixtree
+import utils/radixtree
 
-const entity = staticRead"../../res/entity.json"
+const entity = staticRead"res/entity.json"
 proc genEntityMap(data: seq[tuple[a: string, b: string]]): RadixNode[string] =
   result = newRadixTree[string]()
   for pair in data: