Skip to content

Commit 1495f50

Browse files
committed
fix typo in deploy example. Closes #718
1 parent 390d163 commit 1495f50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/cli/deploy/deploy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
func init() {
2121
cmd := root.Command("deploy", "Deploy the project.").Default()
2222
stage := cmd.Arg("stage", "Target stage name.").Default("staging").String()
23-
cmd.Example(`up deploy`, "Deploy the project the staging environment.")
24-
cmd.Example(`up deploy production`, "Deploy the project to the production environment.")
23+
cmd.Example(`up deploy`, "Deploy to the staging environment.")
24+
cmd.Example(`up deploy production`, "Deploy to the production environment.")
2525

2626
cmd.Action(func(_ *kingpin.ParseContext) error {
2727
return deploy(*stage)

0 commit comments

Comments
 (0)