From de061597faff8fc572efadde7eecd7387ecbf807 Mon Sep 17 00:00:00 2001 From: Robin Clarke Date: Wed, 29 Mar 2017 16:42:19 +0200 Subject: [PATCH] Fix grammar in users tool help message This commit fixes some grammar in the additional help provided by the users tool. Relates elastic/x-pack-elasticsearch#826 Original commit: elastic/x-pack-elasticsearch@49c86576d644cae82087d480723fe6655336d4b8 --- .../xpack/security/authc/file/tool/UsersTool.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/src/main/java/org/elasticsearch/xpack/security/authc/file/tool/UsersTool.java b/plugin/src/main/java/org/elasticsearch/xpack/security/authc/file/tool/UsersTool.java index e27a20c7963..32ed0a8a0bc 100644 --- a/plugin/src/main/java/org/elasticsearch/xpack/security/authc/file/tool/UsersTool.java +++ b/plugin/src/main/java/org/elasticsearch/xpack/security/authc/file/tool/UsersTool.java @@ -129,11 +129,11 @@ public class UsersTool extends MultiCommand { @Override protected void printAdditionalHelp(Terminal terminal) { terminal.println("Removes an existing file based user from elasticsearch. The user will be"); - terminal.println("removed from the users file and its roles will be removed to the"); + terminal.println("removed from the users file and its roles will be removed from the"); terminal.println("users_roles file. If non-default files are used (different file"); terminal.println("locations are configured in elasticsearch.yml) the appropriate files"); terminal.println("will be resolved from the settings and the user and its roles will be"); - terminal.println("removed to them."); + terminal.println("removed from them."); terminal.println(""); }