@@ -49,16 +49,16 @@ public class Option implements Cloneable, Serializable {
4949 */
5050 public static final class Builder {
5151
52- /** the name of the option */
52+ /** The name of the option */
5353 private final String option ;
5454
5555 /** description of the option */
5656 private String description ;
5757
58- /** the long representation of the option */
58+ /** The long representation of the option */
5959 private String longOption ;
6060
61- /** the name of the argument for this option */
61+ /** The name of the argument for this option */
6262 private String argName ;
6363
6464 /** specifies whether this option is required to be present */
@@ -67,13 +67,13 @@ public static final class Builder {
6767 /** specifies whether the argument value of this Option is optional */
6868 private boolean optionalArg ;
6969
70- /** the number of argument values this option can have */
70+ /** The number of argument values this option can have */
7171 private int argCount = UNINITIALIZED ;
7272
73- /** the type of this Option */
73+ /** The type of this Option */
7474 private Class <?> type = String .class ;
7575
76- /** the character that is the value separator */
76+ /** The character that is the value separator */
7777 private char valueSeparator ;
7878
7979 /**
@@ -282,13 +282,13 @@ public static Builder builder(final String opt) {
282282 return new Builder (opt );
283283 }
284284
285- /** the name of the option */
285+ /** The name of the option */
286286 private final String opt ;
287287
288- /** the long representation of the option */
288+ /** The long representation of the option */
289289 private String longOpt ;
290290
291- /** the name of the argument for this option */
291+ /** The name of the argument for this option */
292292 private String argName ;
293293
294294 /** description of the option */
@@ -300,16 +300,16 @@ public static Builder builder(final String opt) {
300300 /** specifies whether the argument value of this Option is optional */
301301 private boolean optionalArg ;
302302
303- /** the number of argument values this option can have */
303+ /** The number of argument values this option can have */
304304 private int numberOfArgs = UNINITIALIZED ;
305305
306- /** the type of this Option */
306+ /** The type of this Option */
307307 private Class <?> type = String .class ;
308308
309- /** the list of argument values **/
309+ /** The list of argument values **/
310310 private List <String > values = new ArrayList <>();
311311
312- /** the character that is the value separator */
312+ /** The character that is the value separator */
313313 private char valuesep ;
314314
315315 /**
0 commit comments