Skip to content

Commit 1d7b5ca

Browse files
committed
Javadoc
1 parent 4f9ac34 commit 1d7b5ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public JaccardDistance() {
4040
*
4141
* @param left first input sequence.
4242
* @param right second input sequence.
43-
* @return index
43+
* @return The Jaccard distance.
4444
* @throws IllegalArgumentException if either String input {@code null}.
4545
*/
4646
@Override
@@ -54,7 +54,7 @@ public Double apply(final CharSequence left, final CharSequence right) {
5454
* @param <E> The type of similarity score unit.
5555
* @param left first input sequence.
5656
* @param right second input sequence.
57-
* @return index
57+
* @return index.
5858
* @throws IllegalArgumentException if either String input {@code null}.
5959
*/
6060
public <E> Double apply(final SimilarityInput<E> left, final SimilarityInput<E> right) {

0 commit comments

Comments
 (0)