You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/cli/Option.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
31
31
* An Option is not created independently, but is created through an instance of {@link Options}. An Option is required to have at least a short or a long-name.
32
32
* </p>
33
33
* <p>
34
-
* <b>Note:</b> once an {@link Option} has been added to an instance of {@link Options}, its required flag cannot be changed.
34
+
* <strong>Note:</strong> once an {@link Option} has been added to an instance of {@link Options}, its required flag cannot be changed.
35
35
* </p>
36
36
*
37
37
* @see org.apache.commons.cli.Options
@@ -317,7 +317,7 @@ public Builder valueSeparator() {
317
317
/**
318
318
* The Option will use {@code sep} as a means to separate argument values.
319
319
* <p>
320
-
* <b>Example:</b>
320
+
* <strong>Example:</strong>
321
321
* </p>
322
322
*
323
323
* <pre>
@@ -955,7 +955,7 @@ public void setType(final Class<?> type) {
955
955
/**
956
956
* Sets the type of this Option.
957
957
* <p>
958
-
* <b>Note:</b> this method is kept for binary compatibility and the input type is supposed to be a {@link Class} object.
958
+
* <strong>Note:</strong> this method is kept for binary compatibility and the input type is supposed to be a {@link Class} object.
0 commit comments