Skip to content

Commit 2afc236

Browse files
committed
Javadoc
1 parent c819ed7 commit 2afc236

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public EditDistanceFrom(final EditDistance<R> editDistance, final CharSequence l
8080
* Compares "left" field against the "right" parameter
8181
* using the "edit distance" implementation.
8282
*
83-
* @param right the second CharSequence
84-
* @return The similarity score between two CharSequences
83+
* @param right the second CharSequence.
84+
* @return The similarity score between two CharSequences.
8585
*/
8686
public R apply(final CharSequence right) {
8787
return editDistance.apply(left, right);
@@ -90,7 +90,7 @@ public R apply(final CharSequence right) {
9090
/**
9191
* Gets the edit distance.
9292
*
93-
* @return The edit distance
93+
* @return The edit distance.
9494
*/
9595
public EditDistance<R> getEditDistance() {
9696
return editDistance;
@@ -99,7 +99,7 @@ public EditDistance<R> getEditDistance() {
9999
/**
100100
* Gets the left parameter.
101101
*
102-
* @return The left parameter
102+
* @return The left parameter.
103103
*/
104104
public CharSequence getLeft() {
105105
return left;

0 commit comments

Comments
 (0)