Skip to content

Commit 9aae655

Browse files
committed
Use Javadoc tags instead of HTML.
1 parent ac96d62 commit 9aae655

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/cli/DefaultParser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ public static Builder builder() {
686686
}
687687

688688
/**
689-
* A nested builder class to create <code>DefaultParser</code> instances
689+
* A nested builder class to create {@code DefaultParser} instances
690690
* using descriptive methods.
691691
*
692692
* Example usage:
@@ -708,7 +708,7 @@ public static final class Builder {
708708
private Boolean stripLeadingAndTrailingQuotes;
709709

710710
/**
711-
* Constructs a new <code>Builder</code> for a <code>DefaultParser</code> instance.
711+
* Constructs a new {@code Builder} for a {@code DefaultParser} instance.
712712
*
713713
* Both allowPartialMatching and stripLeadingAndTrailingQuotes are true by default,
714714
* mimicking the argument-less constructor.
@@ -748,7 +748,7 @@ public Builder setAllowPartialMatching(final boolean allowPartialMatching) {
748748
*
749749
* If "stripping of balanced leading and trailing double quotes from option arguments" is true,
750750
* the outermost balanced double quotes of option arguments values will be removed.
751-
* For example, <code>-o '"x"'</code> getValue() will return <code>x</code>, instead of <code>"x"</code>
751+
* For example, {@code -o '"x"'} getValue() will return {@code x}, instead of {@code "x"}
752752
*
753753
* If "stripping of balanced leading and trailing double quotes from option arguments" is null,
754754
* then quotes will be stripped from option values separated by space from the option, but

0 commit comments

Comments
 (0)