diff options
author | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
commit | fa4560f63e38886b2b7541642b9aa1656dc40508 (patch) | |
tree | 7177fd845926e92b655306e08f4b5a8fc5156b4d /src/utils/twtstr.nim | |
parent | ab963e4efe0871a6bdedf2f56fcfb9ed15636d12 (diff) | |
download | chawan-fa4560f63e38886b2b7541642b9aa1656dc40508.tar.gz |
Reorganize imports
Diffstat (limited to 'src/utils/twtstr.nim')
-rw-r--r-- | src/utils/twtstr.nim | 2 |
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: |