@@ -22,8 +22,9 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2222 * {@link Options} specified and return a {@link CommandLine}.
2323 */
2424public interface CommandLineParser {
25+
2526 /**
26- * Parse the arguments according to the specified options.
27+ * Parses the arguments according to the specified options.
2728 *
2829 * @param options the specified Options
2930 * @param arguments the command line arguments
@@ -34,7 +35,7 @@ public interface CommandLineParser {
3435 CommandLine parse (Options options , String [] arguments ) throws ParseException ;
3536
3637 /**
37- * Parse the arguments according to the specified options and properties.
38+ * Parses the arguments according to the specified options and properties.
3839 *
3940 * @param options the specified Options
4041 * @param arguments the command line arguments
@@ -50,7 +51,7 @@ public interface CommandLineParser {
5051 */
5152
5253 /**
53- * Parse the arguments according to the specified options.
54+ * Parses the arguments according to the specified options.
5455 *
5556 * @param options the specified Options
5657 * @param arguments the command line arguments
@@ -64,7 +65,7 @@ public interface CommandLineParser {
6465 CommandLine parse (Options options , String [] arguments , boolean stopAtNonOption ) throws ParseException ;
6566
6667 /**
67- * Parse the arguments according to the specified options and properties.
68+ * Parses the arguments according to the specified options and properties.
6869 *
6970 * @param options the specified Options
7071 * @param arguments the command line arguments
0 commit comments