This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-cli.git
The following commit(s) were added to refs/heads/master by this push: new 9aae655 Use Javadoc tags instead of HTML. 9aae655 is described below commit 9aae655438b46e33213f50e27997be667ec9ff38 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 17 10:44:45 2021 -0400 Use Javadoc tags instead of HTML. --- src/main/java/org/apache/commons/cli/DefaultParser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/DefaultParser.java b/src/main/java/org/apache/commons/cli/DefaultParser.java index 40f1fec..d5e11f6 100644 --- a/src/main/java/org/apache/commons/cli/DefaultParser.java +++ b/src/main/java/org/apache/commons/cli/DefaultParser.java @@ -686,7 +686,7 @@ public class DefaultParser implements CommandLineParser { } /** - * A nested builder class to create <code>DefaultParser</code> instances + * A nested builder class to create {@code DefaultParser} instances * using descriptive methods. * * Example usage: @@ -708,7 +708,7 @@ public class DefaultParser implements CommandLineParser { private Boolean stripLeadingAndTrailingQuotes; /** - * Constructs a new <code>Builder</code> for a <code>DefaultParser</code> instance. + * Constructs a new {@code Builder} for a {@code DefaultParser} instance. * * Both allowPartialMatching and stripLeadingAndTrailingQuotes are true by default, * mimicking the argument-less constructor. @@ -748,7 +748,7 @@ public class DefaultParser implements CommandLineParser { * * If "stripping of balanced leading and trailing double quotes from option arguments" is true, * the outermost balanced double quotes of option arguments values will be removed. - * For example, <code>-o '"x"'</code> getValue() will return <code>x</code>, instead of <code>"x"</code> + * For example, {@code -o '"x"'} getValue() will return {@code x}, instead of {@code "x"} * * If "stripping of balanced leading and trailing double quotes from option arguments" is null, * then quotes will be stripped from option values separated by space from the option, but