From b211d69dde39f65cf8bcc5c6b17795b3daca7e1b Mon Sep 17 00:00:00 2001 From: Phil Kates Date: Sat, 17 Jan 2015 15:43:04 -0800 Subject: [PATCH] Fix typo in refresh command error Noticed this while I was digging around to see how the commands work. --- command/refresh.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/refresh.go b/command/refresh.go index abca0cd025..f8765506a6 100644 --- a/command/refresh.go +++ b/command/refresh.go @@ -30,7 +30,7 @@ func (c *RefreshCommand) Run(args []string) int { var configPath string args = cmdFlags.Args() if len(args) > 1 { - c.Ui.Error("The apply command expects at most one argument.") + c.Ui.Error("The refresh command expects at most one argument.") cmdFlags.Usage() return 1 } else if len(args) == 1 {