Skip to content

Commit b1780fb

Browse files
committed
doc edit
1 parent f2c4b76 commit b1780fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/cicirello/sequences/distance/EditDistanceDouble.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/**
2727
* EditDistanceDouble is an implementation of Wagner and Fischer's dynamic programming algorithm for
2828
* computing string edit distance. This class supports double-valued costs, while the {@link
29-
* EditDistance} class supports int-valued costs. If your costs are
30-
* int-valued, the {@link EditDistance} class may be slightly faster, but not asymptotically faster.
29+
* EditDistance} class supports int-valued costs. If your costs are int-valued, the {@link
30+
* EditDistance} class may be slightly faster, but not asymptotically faster.
3131
*
3232
* <p>Edit distance is the minimum cost to transform one string (or sequence) into the other, which
3333
* is the sum of the costs of the edit operations necessary to do so. This edit distance considers 3

0 commit comments

Comments
 (0)