We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46f185d commit a78cff6Copy full SHA for a78cff6
1 file changed
src/main/java/org/apache/commons/cli/Option.java
@@ -218,11 +218,11 @@ public Builder hasArgs() {
218
/**
219
* Sets the long name of the Option.
220
*
221
- * @param longOpt the long name of the Option
+ * @param longOption the long name of the Option
222
* @return this builder.
223
*/
224
- public Builder longOpt(final String longOpt) {
225
- this.longOption = longOpt;
+ public Builder longOpt(final String longOption) {
+ this.longOption = longOption;
226
return this;
227
}
228
0 commit comments