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

commit d63b4bd3e61e83b6dbe7b3d6f81a06967f17e784
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Oct 4 14:55:44 2021 -0400

    Javadoc: Sentences start with a capitalize letter.
---
 src/main/java/org/apache/commons/cli/HelpFormatter.java | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/HelpFormatter.java 
b/src/main/java/org/apache/commons/cli/HelpFormatter.java
index 1db5953..694ff03 100644
--- a/src/main/java/org/apache/commons/cli/HelpFormatter.java
+++ b/src/main/java/org/apache/commons/cli/HelpFormatter.java
@@ -87,10 +87,10 @@ public class HelpFormatter {
         }
     }
 
-    /** default number of characters per line */
+    /** Default number of characters per line */
     public static final int DEFAULT_WIDTH = 74;
 
-    /** default padding to the left of each line */
+    /** Default padding to the left of each line */
     public static final int DEFAULT_LEFT_PAD = 1;
 
     /** number of space characters to be prefixed to each description line */
@@ -99,10 +99,10 @@ public class HelpFormatter {
     /** The string to display at the beginning of the usage statement */
     public static final String DEFAULT_SYNTAX_PREFIX = "usage: ";
 
-    /** default prefix for shortOpts */
+    /** Default prefix for shortOpts */
     public static final String DEFAULT_OPT_PREFIX = "-";
 
-    /** default prefix for long Option */
+    /** Default prefix for long Option */
     public static final String DEFAULT_LONG_OPT_PREFIX = "--";
 
     /**
@@ -112,7 +112,7 @@ public class HelpFormatter {
      **/
     public static final String DEFAULT_LONG_OPT_SEPARATOR = " ";
 
-    /** default name for an argument */
+    /** Default name for an argument */
     public static final String DEFAULT_ARG_NAME = "arg";
 
     /**

Reply via email to