Skip to content

Commit 3043d7a

Browse files
committed
lm
1 parent f6deb85 commit 3043d7a

File tree

1 file changed

+1
-1
lines changed
  • algorithms/divide-and-conquer/karatsuba

1 file changed

+1
-1
lines changed

algorithms/divide-and-conquer/karatsuba/imp-1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Nat *mulNat(Nat *x, Nat *y) {
3030
res->digits[i + j] += s / 10;
3131
}
3232

33-
// compute start index and
33+
// compute start index
3434
while (res->start < res->size && res->digits[res->start] == 0)
3535
res->start++;
3636

0 commit comments

Comments
 (0)