Fix semicolon lint

This commit is contained in:
Nathan Shively-Sanders
2017-05-01 13:03:49 -07:00
parent ca7d7f5946
commit eb33ba7d97

View File

@@ -4643,7 +4643,7 @@ namespace ts {
current[j] = Math.min(
previous[j] + 1,
current[j - 1] + 1,
previous[j - 1] + (s1[i - 1] === s2[j - 1] ? 0 : 2))
previous[j - 1] + (s1[i - 1] === s2[j - 1] ? 0 : 2));
}
// shift current back to previous, and then reuse previous' array
const tmp = previous;