Skip to content

Commit be0e13a

Browse files
author
Neil Fraser
committed
Fix variable in uncompressed JS.
1 parent 858b381 commit be0e13a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/diff_match_patch_uncompressed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ diff_match_patch.prototype.diff_charsToLines_ = function(diffs, lineArray) {
536536
for (var j = 0; j < chars.length; j++) {
537537
text[j] = lineArray[chars.charCodeAt(j)];
538538
}
539-
diffs[j][1] = text.join('');
539+
diffs[i][1] = text.join('');
540540
}
541541
};
542542

0 commit comments

Comments
 (0)