Skip to content

Commit 2768751

Browse files
committed
remove trailing whitespace
1 parent f978565 commit 2768751

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/Programs/01-debugging.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ to the standard error stream.
4040
This is in spirit similar to Perl 5's L<Data::Dumper
4141
module|http://perldoc.perl.org/Data/Dumper.html>.
4242
43-
Please note that C<dd> will ignore named parameters. You can use a Capture
43+
Please note that C<dd> will ignore named parameters. You can use a Capture
4444
or Array to force it to dump everything passed to it.
4545
4646
dd \((:a(1), :b(2)), :c(3));

html/js/sift4-common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ function sift4(s1, s2, maxOffset, maxDistance) {
7070
c1=c2=Math.min(c1,c2); //using min allows the computation of transpositions
7171
}
7272
//if matching characters are found, remove 1 from both cursors (they get incremented at the end of the loop)
73-
//so that we can have only one code block handling matches
73+
//so that we can have only one code block handling matches
7474
for (var i = 0; i < maxOffset && (c1+i<l1 || c2+i<l2); i++) {
7575
if ((c1 + i < l1) && (s1.charAt(c1 + i) == s2.charAt(c2))) {
76-
c1+= i-1;
76+
c1+= i-1;
7777
c2--;
7878
break;
7979
}

0 commit comments

Comments
 (0)