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 74e54eece9d5e77fe7a95bb8f498ce4179420995 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 20 10:01:21 2025 -0400 Javadoc --- .../org/apache/commons/text/similarity/IntersectionResult.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/text/similarity/IntersectionResult.java b/src/main/java/org/apache/commons/text/similarity/IntersectionResult.java index 155a772f..01f4f09a 100644 --- a/src/main/java/org/apache/commons/text/similarity/IntersectionResult.java +++ b/src/main/java/org/apache/commons/text/similarity/IntersectionResult.java @@ -49,11 +49,11 @@ public class IntersectionResult { /** * Constructs the results for an intersection between two sets. * - * @param sizeA the size of set A ({@code |A|}) - * @param sizeB the size of set B ({@code |B|}) - * @param intersection the size of the intersection of A and B ({@code |A ∩ B|}) + * @param sizeA the size of set A ({@code |A|}). + * @param sizeB the size of set B ({@code |B|}). + * @param intersection the size of the intersection of A and B ({@code |A ∩ B|}). * @throws IllegalArgumentException if the sizes are negative or the intersection is greater - * than the minimum of the two set sizes + * than the minimum of the two set sizes. */ public IntersectionResult(final int sizeA, final int sizeB, final int intersection) { if (sizeA < 0) {