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 bd008ff5e5f852e6979c9b5800f24f6a2db0e530 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 20 10:01:08 2025 -0400 Javadoc --- .../java/org/apache/commons/text/similarity/JaroWinklerDistance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java index f1554987..5564b07b 100644 --- a/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java +++ b/src/main/java/org/apache/commons/text/similarity/JaroWinklerDistance.java @@ -81,7 +81,7 @@ public class JaroWinklerDistance implements EditDistance<Double> { * @param left the first input, must not be null. * @param right the second input, must not be null. * @return result distance. - * @throws IllegalArgumentException if either CharSequence input is {@code null} + * @throws IllegalArgumentException if either CharSequence input is {@code null}. */ @Override public Double apply(final CharSequence left, final CharSequence right) {