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@49c86576d6
This commit is contained in:
Robin Clarke 2017-03-29 16:42:19 +02:00 committed by Jason Tedor
parent a85b18e70b
commit de061597fa
1 changed files with 2 additions and 2 deletions

View File

@ -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("");
}