Linting corrections

This commit is contained in:
n1073645 2020-01-22 10:36:35 +00:00
parent 34725e0052
commit b6e6797f14

View File

@ -28,6 +28,7 @@ export function levenshteinDistance(firstString, secString) {
// Fill in first row distances.
let i;
for (i = 0; i < firstStringLength + 1; i++)
distMatrix[0][i] = i;