Skip to content

Commit

Permalink
Merge pull request apache#1690 from LiosWong/develop
Browse files Browse the repository at this point in the history
fix typo: paramter
  • Loading branch information
vongosling authored Jan 2, 2020
2 parents 5964e37 + 691e374 commit 9374555
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void execute(final CommandLine commandLine, final Options options,
if (commandLine.hasOption('t')) {
topic = commandLine.getOptionValue('t').trim();
} else {
System.out.printf("topic paramter value must be need.%n");
System.out.printf("topic parameter value must be need.%n");
return;
}
TopicRouteData topicRouteData = defaultMQAdminExt.examineTopicRouteInfo(topic);
Expand All @@ -100,7 +100,7 @@ public void execute(final CommandLine commandLine, final Options options,
if (commandLine.hasOption('p')) {
perm = Integer.parseInt(commandLine.getOptionValue('p').trim());
} else {
System.out.printf("perm paramter value must be need.%n");
System.out.printf("perm parameter value must be need.%n");
return;
}
topicConfig.setPerm(perm);
Expand Down

0 comments on commit 9374555

Please sign in to comment.