Skip to content

Commit eb479f3

Browse files
committed
Javadoc
1 parent 9fc3ee0 commit eb479f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
import java.util.Arrays;
2020

2121
/**
22-
* An algorithm for measuring the difference between two character sequences.
22+
* An algorithm for measuring the difference between two character sequences using the <a href="https://en.wikipedia.org/wiki/Levenshtein_distance">Levenshtein
23+
* Distance</a>.
2324
*
2425
* <p>
2526
* This is the number of changes needed to change one sequence into another, where each change is a single character modification (deletion, insertion or
@@ -30,6 +31,8 @@
3031
* </p>
3132
*
3233
* @since 1.0
34+
* @see <a href="https://en.wikipedia.org/wiki/Levenshtein_distance">Levenshtein Distance</a> on Wikipedia
35+
* @see <a href="https://xlinux.nist.gov/dads/HTML/Levenshtein.html">Levenshtein Distance</a> on NIST
3336
*/
3437
public class LevenshteinDistance implements EditDistance<Integer> {
3538

0 commit comments

Comments
 (0)