Skip to content

Commit

Permalink
Merge pull request #723 from Scalingo/fix/typo/reseted_does_not_exists
Browse files Browse the repository at this point in the history
fix(typo): reseted does not exists, it is reset
  • Loading branch information
curzolapierre authored Jun 3, 2022
2 parents dde1b38 + c03b469 commit fb45373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion stacks/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit fb45373

Please sign in to comment.