Skip to content

Commit 95e9503

Browse files
committed
Suggest subcommand: description text edits
1 parent efa50bf commit 95e9503

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pkg/commands/tools/domain/suggest.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ func NewDomainSuggestionsCommand(parent argparser.Registerer, g *global.Data) *G
3939
// Required.
4040
cmd.CmdClause.Arg("query", "Search query, e.g. “acme coffee shop”").Required().StringsVar(&cmd.query)
4141
// Optional.
42-
cmd.CmdClause.Flag("defaults", "Comma-separated list of default zones to include in the search results response").Action(cmd.defaults.Set).StringVar(&cmd.defaults.Value)
42+
cmd.CmdClause.Flag("defaults", "Comma-separated list of default zones to include in the search results response, e.g. `--defaults=uk,co.uk`").Action(cmd.defaults.Set).StringVar(&cmd.defaults.Value)
4343
cmd.RegisterFlagBool(cmd.JSONFlag())
44-
cmd.CmdClause.Flag("keywords", "Comma-separated list of keywords for seeding the search results").Action(cmd.keywords.Set).StringVar(&cmd.keywords.Value)
45-
cmd.CmdClause.Flag("location", "Override IP geolocation with a two-character country code, e.g. `--location=in` to include Indian domain zones in the search results").Action(cmd.location.Set).StringVar(&cmd.location.Value)
46-
cmd.CmdClause.Flag("vendor", "The domain name of a specific registrar or vendor").Action(cmd.vendor.Set).StringVar(&cmd.vendor.Value)
44+
cmd.CmdClause.Flag("keywords", "Comma-separated list of keywords for seeding the search results, e.g. `--keywords=dance,party`").Action(cmd.keywords.Set).StringVar(&cmd.keywords.Value)
45+
cmd.CmdClause.Flag("location", "Override IP geolocation with a two-character country code, e.g. `--location=in` to include Indian zones in the search results").Action(cmd.location.Set).StringVar(&cmd.location.Value)
46+
cmd.CmdClause.Flag("vendor", "The domain name of a specific registrar or vendor, to filter the search results to the list of zones they support").Action(cmd.vendor.Set).StringVar(&cmd.vendor.Value)
4747

4848
return &cmd
4949
}

0 commit comments

Comments
 (0)