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 20585e0 Javadoc. 20585e0 is described below commit 20585e0843ded9452b8ecf5fcb3aa74dafd2bd2c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 3 20:08:21 2021 -0400 Javadoc. --- src/main/java/org/apache/commons/cli/CommandLineParser.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/CommandLineParser.java b/src/main/java/org/apache/commons/cli/CommandLineParser.java index 7794089..bc6b17e 100644 --- a/src/main/java/org/apache/commons/cli/CommandLineParser.java +++ b/src/main/java/org/apache/commons/cli/CommandLineParser.java @@ -22,8 +22,9 @@ package org.apache.commons.cli; * {@link Options} specified and return a {@link CommandLine}. */ public interface CommandLineParser { + /** - * Parse the arguments according to the specified options. + * Parses the arguments according to the specified options. * * @param options the specified Options * @param arguments the command line arguments @@ -34,7 +35,7 @@ public interface CommandLineParser { CommandLine parse(Options options, String[] arguments) throws ParseException; /** - * Parse the arguments according to the specified options and properties. + * Parses the arguments according to the specified options and properties. * * @param options the specified Options * @param arguments the command line arguments @@ -50,7 +51,7 @@ public interface CommandLineParser { */ /** - * Parse the arguments according to the specified options. + * Parses the arguments according to the specified options. * * @param options the specified Options * @param arguments the command line arguments @@ -64,7 +65,7 @@ public interface CommandLineParser { CommandLine parse(Options options, String[] arguments, boolean stopAtNonOption) throws ParseException; /** - * Parse the arguments according to the specified options and properties. + * Parses the arguments according to the specified options and properties. * * @param options the specified Options * @param arguments the command line arguments