Skip to content

Commit 37a5de7

Browse files
authored
docs: rm uncessary dash for cli flag description (ignite#770)
1 parent 9d3e24a commit 37a5de7

File tree

1 file changed

+1
-1
lines changed
  • starport/interface/cli/starport/cmd

1 file changed

+1
-1
lines changed

starport/interface/cli/starport/cmd/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func NewServe() *cobra.Command {
2424
c.Flags().StringVarP(&appPath, "path", "p", "", "Path of the app")
2525
c.Flags().BoolP("verbose", "v", false, "Verbose output")
2626
c.Flags().BoolP(flagForceReset, "f", false, "Force reset of the app state on start and every source change")
27-
c.Flags().BoolP(flagResetOnce, "r", false, "Reset of -the app state on first start")
27+
c.Flags().BoolP(flagResetOnce, "r", false, "Reset of the app state on first start")
2828
c.Flags().StringP(flagConfig, "c", "", "Starport config file (default: ./config.yml)")
2929

3030
return c

0 commit comments

Comments
 (0)