Skip to content

Commit db8c828

Browse files
committed
Javadoc
1 parent 7be99b5 commit db8c828

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

src/main/java/org/apache/commons/cli/HelpFormatter.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ private void appendOptionGroup(final StringBuffer buff, final OptionGroup group)
313313
}
314314

315315
/**
316-
* Return a String of padding of length {@code len}.
316+
* Creates a String of padding of length {@code len}.
317317
*
318318
* @param len The length of the String of padding to create.
319319
*
@@ -459,7 +459,7 @@ public int getWidth() {
459459
}
460460

461461
/**
462-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
462+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
463463
* to System.out.
464464
*
465465
* @param width the number of characters to be displayed on each line
@@ -473,7 +473,7 @@ public void printHelp(final int width, final String cmdLineSyntax, final String
473473
}
474474

475475
/**
476-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
476+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
477477
* to System.out.
478478
*
479479
* @param width the number of characters to be displayed on each line
@@ -491,7 +491,7 @@ public void printHelp(final int width, final String cmdLineSyntax, final String
491491
}
492492

493493
/**
494-
* Print the help for {@code options} with the specified command line syntax.
494+
* Prints the help for {@code options} with the specified command line syntax.
495495
*
496496
* @param pw the writer to which the help will be written
497497
* @param width the number of characters to be displayed on each line
@@ -510,7 +510,7 @@ public void printHelp(final PrintWriter pw, final int width, final String cmdLin
510510
}
511511

512512
/**
513-
* Print the help for {@code options} with the specified command line syntax.
513+
* Prints the help for {@code options} with the specified command line syntax.
514514
*
515515
* @param pw the writer to which the help will be written
516516
* @param width the number of characters to be displayed on each line
@@ -544,7 +544,7 @@ public void printHelp(final PrintWriter pw, final int width, final String cmdLin
544544
}
545545

546546
/**
547-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
547+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
548548
* to System.out.
549549
*
550550
* @param cmdLineSyntax the syntax for this application
@@ -555,7 +555,7 @@ public void printHelp(final String cmdLineSyntax, final Options options) {
555555
}
556556

557557
/**
558-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
558+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
559559
* to System.out.
560560
*
561561
* @param cmdLineSyntax the syntax for this application
@@ -567,7 +567,7 @@ public void printHelp(final String cmdLineSyntax, final Options options, final b
567567
}
568568

569569
/**
570-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
570+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
571571
* to System.out.
572572
*
573573
* @param cmdLineSyntax the syntax for this application
@@ -580,7 +580,7 @@ public void printHelp(final String cmdLineSyntax, final String header, final Opt
580580
}
581581

582582
/**
583-
* Print the help for {@code options} with the specified command line syntax. This method prints help information
583+
* Prints the help for {@code options} with the specified command line syntax. This method prints help information
584584
* to System.out.
585585
*
586586
* @param cmdLineSyntax the syntax for this application
@@ -594,7 +594,7 @@ public void printHelp(final String cmdLineSyntax, final String header, final Opt
594594
}
595595

596596
/**
597-
* Print the help for the specified Options to the specified writer, using the specified width, left padding and
597+
* Prints the help for the specified Options to the specified writer, using the specified width, left padding and
598598
* description padding.
599599
*
600600
* @param pw The printWriter to write the help to
@@ -610,7 +610,7 @@ public void printOptions(final PrintWriter pw, final int width, final Options op
610610
}
611611

612612
/**
613-
* Print the cmdLineSyntax to the specified writer, using the specified width.
613+
* Prints the cmdLineSyntax to the specified writer, using the specified width.
614614
*
615615
* @param pw The printWriter to write the help to
616616
* @param width The number of characters per line for the usage statement.
@@ -670,7 +670,7 @@ public void printUsage(final PrintWriter pw, final int width, final String app,
670670
}
671671

672672
/**
673-
* Print the specified text to the specified PrintWriter.
673+
* Prints the specified text to the specified PrintWriter.
674674
*
675675
* @param pw The printWriter to write the help to
676676
* @param width The number of characters to display per line

0 commit comments

Comments
 (0)