From b54886d5023da4df735645b186f32fce8f003cc5 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 31 Jul 2017 09:56:47 +0900 Subject: [PATCH] Fix typo in Elasticsearch help This commit fixes a small typo in the help output displayed by Elasticsearch when the --help flag is passed. --- .../main/java/org/elasticsearch/bootstrap/Elasticsearch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/elasticsearch/bootstrap/Elasticsearch.java b/core/src/main/java/org/elasticsearch/bootstrap/Elasticsearch.java index fd050658a3e..e24d4d0e761 100644 --- a/core/src/main/java/org/elasticsearch/bootstrap/Elasticsearch.java +++ b/core/src/main/java/org/elasticsearch/bootstrap/Elasticsearch.java @@ -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); }