Skip to content

Commit 3a51061

Browse files
committed
one semicolon
1 parent 5e0df1b commit 3a51061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/myers-compare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
if(j < i){
120120
start = src.slice(0, j + 1).filter(notEmpty).length; // start pos of diffs (on src)
121121
len = src.slice(j + 1, i + 1).filter(notEmpty).length; // length should be replaced (on src)
122-
to = target.slice(j + 1, i + 1).filter(notEmpty) // new content
122+
to = target.slice(j + 1, i + 1).filter(notEmpty); // new content
123123

124124
diff.unshift(
125125
to.length ?

0 commit comments

Comments
 (0)