Fix typo in Elasticsearch help

This commit fixes a small typo in the help output displayed by
Elasticsearch when the --help flag is passed.
This commit is contained in:
Jason Tedor 2017-07-31 09:56:47 +09:00
parent 80620bd086
commit b54886d502
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Elasticsearch extends EnvironmentAwareCommand {
.withRequiredArg()
.withValuesConvertedBy(new PathConverter());
quietOption = parser.acceptsAll(Arrays.asList("q", "quiet"),
"Turns off standard ouput/error streams logging in console")
"Turns off standard output/error streams logging in console")
.availableUnless(versionOption)
.availableUnless(daemonizeOption);
}