fix some warnings (#16952)

This commit is contained in:
flywind
2021-02-08 06:50:15 -06:00
committed by GitHub
parent 910720b0d4
commit f140c92409
22 changed files with 119 additions and 119 deletions

View File

@@ -46,7 +46,7 @@ proc loadUnidecodeTable*(datafile = "unidecode.dat") =
newSeq(translationTable, 0xffff)
var i = 0
for line in lines(datafile):
translationTable[i] = line.string
translationTable[i] = line
inc(i)
proc unidecode*(s: string): string =