Skip to content

Commit eb33ba7

Browse files
committed
Fix semicolon lint
1 parent ca7d7f5 commit eb33ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4643,7 +4643,7 @@ namespace ts {
46434643
current[j] = Math.min(
46444644
previous[j] + 1,
46454645
current[j - 1] + 1,
4646-
previous[j - 1] + (s1[i - 1] === s2[j - 1] ? 0 : 2))
4646+
previous[j - 1] + (s1[i - 1] === s2[j - 1] ? 0 : 2));
46474647
}
46484648
// shift current back to previous, and then reuse previous' array
46494649
const tmp = previous;

0 commit comments

Comments
 (0)