Merge pull request #6898 from hashicorp/hicks/fix-typo
Fix typo, Ethier -> Either
This commit is contained in:
commit
571ed261c8
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue