Skip to content

Commit

Permalink
Merge pull request alibaba#1629 from martianzhang/master
Browse files Browse the repository at this point in the history
[ISSUE alibaba#1620]fix alibaba#1620 amout spell error
  • Loading branch information
vongosling authored Jan 3, 2020
2 parents 234e04c + 8e2ce06 commit f7c21db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public String commandDesc() {

@Override
public Options buildCommandlineOptions(Options options) {
Option opt = new Option("a", "amout", true, "message amout | default 100");
Option opt = new Option("a", "amount", true, "message amount | default 100");
opt.setRequired(false);
options.addOption(opt);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Options buildCommandlineOptions(Options options) {
opt.setRequired(true);
options.addOption(opt);

opt = new Option("a", "amout", true, "message amout | default 100");
opt = new Option("a", "amount", true, "message amount | default 100");
opt.setRequired(false);
options.addOption(opt);

Expand Down

0 comments on commit f7c21db

Please # to comment.