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 78ac6b7e Javadoc 78ac6b7e is described below commit 78ac6b7ebc2fc43bca974efbb907f9093014f96b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Oct 18 08:27:24 2024 -0400 Javadoc --- .../java/org/apache/commons/cli/help/AbstractHelpFormatter.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/cli/help/AbstractHelpFormatter.java b/src/main/java/org/apache/commons/cli/help/AbstractHelpFormatter.java index 420025f6..71b69ab3 100644 --- a/src/main/java/org/apache/commons/cli/help/AbstractHelpFormatter.java +++ b/src/main/java/org/apache/commons/cli/help/AbstractHelpFormatter.java @@ -170,11 +170,13 @@ public abstract class AbstractHelpFormatter { public static final Comparator<Option> DEFAULT_COMPARATOR = (opt1, opt2) -> opt1.getKey().compareToIgnoreCase(opt2.getKey()); /** - * The default separator between {@link OptionGroup} elements. + * The default separator between {@link OptionGroup} elements: {@value}. */ public static final String DEFAULT_OPTION_GROUP_SEPARATOR = " | "; - /** The string to display at the beginning of the usage statement */ + /** + * The string to display at the beginning of the usage statement: {@value}. + */ public static final String DEFAULT_SYNTAX_PREFIX = "usage: "; /** The comparator for sorting {@link Option} collections */