Skip to content

Commit 74248b8

Browse files
committed
reword
1 parent 9b6634f commit 74248b8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/sandbox/create.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ func NewCreateCommand(clients *shared.ClientFactory) *cobra.Command {
6969
}
7070

7171
cmd.Flags().StringVar(&createCmdFlags.name, "name", "", "Organization name for the new sandbox")
72-
cmd.Flags().StringVar(&createCmdFlags.domain, "domain", "", "Team domain. If not provided, will be derived from org name")
72+
cmd.Flags().StringVar(&createCmdFlags.domain, "domain", "", "Team domain. Derived from org name if not provided")
7373
cmd.Flags().StringVar(&createCmdFlags.password, "password", "", "Password used to log into the sandbox")
7474
cmd.Flags().StringVar(&createCmdFlags.locale, "locale", "", "Locale (eg. en-us, languageCode-countryCode)")
75-
cmd.Flags().StringVar(&createCmdFlags.template, "template", "", "Template for pre-defined data to preload (default, empty)")
75+
cmd.Flags().StringVar(&createCmdFlags.template, "template", "", "Template with sample data to apply to the sandbox (default, empty)")
7676
cmd.Flags().StringVar(&createCmdFlags.eventCode, "event-code", "", "Event code for the sandbox")
77-
cmd.Flags().StringVar(&createCmdFlags.archiveTTL, "archive-ttl", "", "Time-to-live duration; sandbox will be archived at end of day after this period (eg. 1d, 3w, 2mo). Cannot be used with --archive-date")
77+
cmd.Flags().StringVar(&createCmdFlags.archiveTTL, "archive-ttl", "", "Time-to-live duration (eg. 1d, 3w, 2mo). Cannot be used with --archive-date")
7878
cmd.Flags().StringVar(&createCmdFlags.archiveDate, "archive-date", "", "Explicit archive date in yyyy-mm-dd format. Cannot be used with --archive-ttl")
7979
cmd.Flags().BoolVar(&createCmdFlags.partner, "partner", false, "Developers who are part of the Partner program can create partner sandboxes")
8080

0 commit comments

Comments
 (0)