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
The following commit(s) were added to refs/heads/master by this push: new 23dd4e0 Javadoc 23dd4e0 is described below commit 23dd4e0eaa86084298ad0c8b78adcfa08b7704ef Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 11 16:11:43 2023 -0500 Javadoc --- src/main/java/org/apache/commons/cli/MissingArgumentException.java | 4 ++-- src/main/java/org/apache/commons/cli/MissingOptionException.java | 2 +- src/main/java/org/apache/commons/cli/ParseException.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/MissingArgumentException.java b/src/main/java/org/apache/commons/cli/MissingArgumentException.java index 87609d8..eb5a1a1 100644 --- a/src/main/java/org/apache/commons/cli/MissingArgumentException.java +++ b/src/main/java/org/apache/commons/cli/MissingArgumentException.java @@ -30,7 +30,7 @@ public class MissingArgumentException extends ParseException { private Option option; /** - * Construct a new {@code MissingArgumentException} with the specified detail message. + * Constructs a new {@code MissingArgumentException} with the specified detail message. * * @param option the option requiring an argument * @since 1.2 @@ -41,7 +41,7 @@ public class MissingArgumentException extends ParseException { } /** - * Construct a new {@code MissingArgumentException} with the specified detail message. + * Constructs a new {@code MissingArgumentException} with the specified detail message. * * @param message the detail message */ diff --git a/src/main/java/org/apache/commons/cli/MissingOptionException.java b/src/main/java/org/apache/commons/cli/MissingOptionException.java index 521cf2e..1fdb840 100644 --- a/src/main/java/org/apache/commons/cli/MissingOptionException.java +++ b/src/main/java/org/apache/commons/cli/MissingOptionException.java @@ -64,7 +64,7 @@ public class MissingOptionException extends ParseException { } /** - * Construct a new {@code MissingSelectedException} with the specified detail message. + * Constructs a new {@code MissingSelectedException} with the specified detail message. * * @param message the detail message */ diff --git a/src/main/java/org/apache/commons/cli/ParseException.java b/src/main/java/org/apache/commons/cli/ParseException.java index 5d3acc6..37bab98 100644 --- a/src/main/java/org/apache/commons/cli/ParseException.java +++ b/src/main/java/org/apache/commons/cli/ParseException.java @@ -27,7 +27,7 @@ public class ParseException extends Exception { private static final long serialVersionUID = 9112808380089253192L; /** - * Construct a new {@code ParseException} with the specified detail message. + * Constructs a new {@code ParseException} with the specified detail message. * * @param message the detail message */