This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 05bad67d Javadoc
05bad67d is described below

commit 05bad67d53dba6d0f7de05d2db405f0eab1fee33
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 15:49:56 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/cli/HelpFormatter.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/HelpFormatter.java 
b/src/main/java/org/apache/commons/cli/HelpFormatter.java
index 91d5b2bb..36178805 100644
--- a/src/main/java/org/apache/commons/cli/HelpFormatter.java
+++ b/src/main/java/org/apache/commons/cli/HelpFormatter.java
@@ -418,7 +418,7 @@ public class HelpFormatter {
      * @param leftPad The number of characters of padding to be prefixed to 
each line
      * @param descPad The number of characters of padding to be prefixed to 
each description line
      * @return The StringBuffer with the rendered Options contents.
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     <A extends Appendable> A appendOptions(final A sb, final int width, final 
Options options, final int leftPad, final int descPad) throws IOException {
         final String lpad = createPadding(leftPad);
@@ -502,7 +502,7 @@ public class HelpFormatter {
      * @param nextLineTabStop The position on the next line for the first tab.
      * @param text The text to be rendered.
      * @return The StringBuffer with the rendered Options contents.
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     <A extends Appendable> A appendWrappedText(final A appendable, final int 
width, final int nextLineTabStop, final String text) throws IOException {
         if (width <= 0) {

Reply via email to