diff --git a/cmd/stacks.go b/cmd/stacks.go index 7983ef604..e52db35b5 100644 --- a/cmd/stacks.go +++ b/cmd/stacks.go @@ -33,7 +33,7 @@ var ( Category: "Runtime Stacks", Usage: "Set the runtime stack of an app", Flags: []cli.Flag{appFlag}, - Description: `Set the runtime stack of an app (deployment cache will be reseted): + Description: `Set the runtime stack of an app (deployment cache will be reset): Example: scalingo --app my-app stacks-set scalingo-18 diff --git a/stacks/set.go b/stacks/set.go index 6dac28501..bdf7c544e 100644 --- a/stacks/set.go +++ b/stacks/set.go @@ -36,7 +36,7 @@ func Set(app string, stack string) error { } io.Statusf("Stack of %v has been set to %v (%v)\n", io.Bold(app), io.Bold(stackToSet.Name), stackToSet.ID) - io.Infof(io.Gray("Deployment cache of %v has been reseted\n"), app) + io.Infof(io.Gray("Deployment cache of %v has been reset\n"), app) return nil }