This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git

commit 90eb6293905066fd1e26c3768c4e88c2ccab8b1c
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jul 20 10:01:00 2025 -0400

    Javadoc
---
 .../text/similarity/LevenshteinDistance.java       | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java 
b/src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java
index 3aad1d8d..787279c6 100644
--- a/src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java
+++ b/src/main/java/org/apache/commons/text/similarity/LevenshteinDistance.java
@@ -44,7 +44,7 @@ public class LevenshteinDistance implements 
EditDistance<Integer> {
     /**
      * Gets the default instance.
      *
-     * @return The default instance
+     * @return The default instance.
      */
     public static LevenshteinDistance getDefaultInstance() {
         return INSTANCE;
@@ -72,9 +72,9 @@ public class LevenshteinDistance implements 
EditDistance<Integer> {
      * limitedCompare("hippo", "elephant", 6) = -1
      * </pre>
      *
-     * @param left      the first SimilarityInput, must not be null
-     * @param right     the second SimilarityInput, must not be null
-     * @param threshold the target threshold, must not be negative
+     * @param left      the first SimilarityInput, must not be null.
+     * @param right     the second SimilarityInput, must not be null.
+     * @param threshold the target threshold, must not be negative.
      * @return result distance, or -1
      */
     private static <E> int limitedCompare(SimilarityInput<E> left, 
SimilarityInput<E> right, final int threshold) { // NOPMD
@@ -229,10 +229,10 @@ public class LevenshteinDistance implements 
EditDistance<Integer> {
      * unlimitedCompare("hello", "hallo")    = 1
      * </pre>
      *
-     * @param left  the first CharSequence, must not be null
-     * @param right the second CharSequence, must not be null
-     * @return result distance, or -1
-     * @throws IllegalArgumentException if either CharSequence input is {@code 
null}
+     * @param left  the first CharSequence, must not be null.
+     * @param right the second CharSequence, must not be null.
+     * @return result distance, or -1.
+     * @throws IllegalArgumentException if either CharSequence input is {@code 
null}.
      */
     private static <E> int unlimitedCompare(SimilarityInput<E> left, 
SimilarityInput<E> right) {
         if (left == null || right == null) {
@@ -347,10 +347,10 @@ public class LevenshteinDistance implements 
EditDistance<Integer> {
      * distance.apply("hello", "hallo")    = 1
      * </pre>
      *
-     * @param left  the first input, must not be null
-     * @param right the second input, must not be null
-     * @return result distance, or -1
-     * @throws IllegalArgumentException if either String input {@code null}
+     * @param left  the first input, must not be null.
+     * @param right the second input, must not be null.
+     * @return result distance, or -1.
+     * @throws IllegalArgumentException if either String input {@code null}.
      */
     @Override
     public Integer apply(final CharSequence left, final CharSequence right) {

Reply via email to