Merge pull request #6898 from hashicorp/hicks/fix-typo

Fix typo, Ethier -> Either
This commit is contained in:
Michael Schurter 2020-01-02 14:52:18 -08:00 committed by GitHub
commit 571ed261c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ func (c *NodeDrainCommand) Run(args []string) int {
// Check that we got either enable or disable, but not both.
if (enable && disable) || (!monitor && !enable && !disable) {
c.Ui.Error("Ethier the '-enable' or '-disable' flag must be set, unless using '-monitor'")
c.Ui.Error("Either the '-enable' or '-disable' flag must be set, unless using '-monitor'")
c.Ui.Error(commandErrorText(c))
return 1
}

View File

@ -86,7 +86,7 @@ func (c *NodeEligibilityCommand) Run(args []string) int {
// Check that we got either enable or disable, but not both.
if (enable && disable) || (!enable && !disable) {
c.Ui.Error("Ethier the '-enable' or '-disable' flag must be set")
c.Ui.Error("Either the '-enable' or '-disable' flag must be set")
c.Ui.Error(commandErrorText(c))
return 1
}