Fix spellings (#12277) [backport]

(cherry picked from commit 39290cf88c)
This commit is contained in:
Federico Ceratto
2019-09-27 06:02:54 +01:00
committed by narimiran
parent c8314b7c9c
commit fa7f5742d3
110 changed files with 166 additions and 166 deletions

View File

@@ -210,7 +210,7 @@ proc editDistanceAscii*(a, b: string): int {.noSideEffect.} =
inc(len1)
inc(len2)
var half = len1 shr 1
# initalize first row:
# initialize first row:
#var row = cast[ptr array[0..high(int) div 8, int]](alloc(len2*sizeof(int)))
var row: seq[int]
newSeq(row, len2)