about summary refs log tree commit diff stats
path: root/src/utils/twtstr.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-08-07 12:16:29 +0200
committerbptato <nincsnevem662@gmail.com>2021-08-07 12:16:29 +0200
commitfa4560f63e38886b2b7541642b9aa1656dc40508 (patch)
tree7177fd845926e92b655306e08f4b5a8fc5156b4d /src/utils/twtstr.nim
parentab963e4efe0871a6bdedf2f56fcfb9ed15636d12 (diff)
downloadchawan-fa4560f63e38886b2b7541642b9aa1656dc40508.tar.gz
Reorganize imports
Diffstat (limited to 'src/utils/twtstr.nim')
-rw-r--r--src/utils/twtstr.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/twtstr.nim b/src/utils/twtstr.nim
index 8acc2343..707b09a9 100644
--- a/src/utils/twtstr.nim
+++ b/src/utils/twtstr.nim
@@ -483,7 +483,7 @@ func nohandakuten*(r: Rune): Rune =
   return cast[Rune](cast[int](r) - 2)
 
 # Halfwidth to fullwidth & vice versa
-const widthconv = staticRead"../../res/widthconv.json"
+const widthconv = staticRead"res/widthconv.json"
 proc genHalfWidthTable(): Table[Rune, Rune] =
   let widthconvjson = parseJson(widthconv)
   for k, v in widthconvjson: