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-cli.git
commit ea48fc26b7cb88779fc4f57c5f5178a7f885c8af Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 7 10:19:58 2024 -0400 Javadoc fix --- src/main/java/org/apache/commons/cli/TypeHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/cli/TypeHandler.java b/src/main/java/org/apache/commons/cli/TypeHandler.java index c65fbc5..deb7dbf 100644 --- a/src/main/java/org/apache/commons/cli/TypeHandler.java +++ b/src/main/java/org/apache/commons/cli/TypeHandler.java @@ -233,7 +233,7 @@ public class TypeHandler { } /** - * Registers a Converter for a Class. If @code converter} is null registration is cleared for {@code clazz}, and no converter will be used in processing. + * Registers a Converter for a Class. If {@code converter} is null registration is cleared for {@code clazz}, and no converter will be used in processing. * * @param clazz the Class to register the Converter and Verifier to. * @param converter The Converter to associate with Class. May be null.