@@ -25,7 +25,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
2525import java .util .Properties ;
2626
2727/**
28- * {@code Parser} creates {@link CommandLine}s .
28+ * Creates {@link CommandLine} instances .
2929 *
3030 * @deprecated since 1.3, the two-pass parsing with the flatten method is not enough flexible to handle complex cases
3131 */
@@ -119,7 +119,7 @@ public CommandLine parse(final Options options, final String[] arguments, final
119119 }
120120
121121 /**
122- * Parse the arguments according to the specified options and properties.
122+ * Parses the arguments according to the specified options and properties.
123123 *
124124 * @param options the specified Options.
125125 * @param arguments the command line arguments.
@@ -133,7 +133,7 @@ public CommandLine parse(final Options options, final String[] arguments, final
133133 }
134134
135135 /**
136- * Parse the arguments according to the specified options and properties.
136+ * Parses the arguments according to the specified options and properties.
137137 *
138138 * @param options the specified Options.
139139 * @param arguments the command line arguments.
@@ -208,7 +208,7 @@ public CommandLine parse(final Options options, final String[] arguments, final
208208 }
209209
210210 /**
211- * Process the argument values for the specified Option {@code opt} using the values retrieved from the specified
211+ * Processes the argument values for the specified Option {@code opt} using the values retrieved from the specified
212212 * iterator {@code iter}.
213213 *
214214 * @param opt The current Option.
@@ -238,7 +238,7 @@ public void processArgs(final Option opt, final ListIterator<String> iter) throw
238238 }
239239
240240 /**
241- * Process the Option specified by {@code arg} using the values retrieved from the specified iterator
241+ * Processes the Option specified by {@code arg} using the values retrieved from the specified iterator
242242 * {@code iter}.
243243 *
244244 * @param arg The String value representing an Option.
0 commit comments