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-lang.git
commit accde3be2368c64c2d3cb3c22e78a2b81c6423c9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 10 07:14:20 2023 -0400 Javdoc --- .../java/org/apache/commons/lang3/function/IntToCharFunction.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/function/IntToCharFunction.java b/src/main/java/org/apache/commons/lang3/function/IntToCharFunction.java index f3da38451..a90797d20 100644 --- a/src/main/java/org/apache/commons/lang3/function/IntToCharFunction.java +++ b/src/main/java/org/apache/commons/lang3/function/IntToCharFunction.java @@ -20,12 +20,11 @@ package org.apache.commons.lang3.function; import java.util.function.Function; /** - * Represents a function that accepts an int-valued argument and produces a long-valued result. This is the - * {@code int}-to-{@code long} primitive specialization for {@link Function}. + * Represents a function that accepts an int-valued argument and produces a char-valued result. This is the {@code int}-to-{@code char} primitive specialization + * for {@link Function}. * * <p> - * This is a <a href="package-summary.html">functional interface</a> whose functional method is - * {@link #applyAsChar(int)}. + * This is a <a href="package-summary.html">functional interface</a> whose functional method is {@link #applyAsChar(int)}. * </p> * * @see Function