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 a4626645 Javadoc
a4626645 is described below
commit a46266452c9c85dadae3c43ca4f77042ca5ed04a
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Oct 18 08:29:04 2024 -0400
Javadoc
---
src/main/java/org/apache/commons/cli/help/HelpFormatter.java | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/cli/help/HelpFormatter.java
b/src/main/java/org/apache/commons/cli/help/HelpFormatter.java
index d46245a2..4f5c18d2 100644
--- a/src/main/java/org/apache/commons/cli/help/HelpFormatter.java
+++ b/src/main/java/org/apache/commons/cli/help/HelpFormatter.java
@@ -102,13 +102,18 @@ public class HelpFormatter extends AbstractHelpFormatter {
}
}
- /** Default number of characters per line */
+ /**
+ * Default number of characters per line: {@value}.
+ */
public static final int DEFAULT_WIDTH = 74;
- /** Default padding to the left of each line */
+ /**
+ * Default padding to the left of each line: {@value}. */
public static final int DEFAULT_LEFT_PAD = 1;
- /** The default number of spaces between columns in the options table */
+ /**
+ * The default number of spaces between columns in the options table:
{@value}.
+ */
public static final int DEFAULT_COLUMN_SPACING = 5;
/**