Skip to content

Commit a78cff6

Browse files
committed
Better param name
1 parent 46f185d commit a78cff6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,11 @@ public Builder hasArgs() {
218218
/**
219219
* Sets the long name of the Option.
220220
*
221-
* @param longOpt the long name of the Option
221+
* @param longOption the long name of the Option
222222
* @return this builder.
223223
*/
224-
public Builder longOpt(final String longOpt) {
225-
this.longOption = longOpt;
224+
public Builder longOpt(final String longOption) {
225+
this.longOption = longOption;
226226
return this;
227227
}
228228

0 commit comments

Comments
 (0)