@@ -56,13 +56,13 @@ targetCommand :: CommandUI (NixStyleFlags ())
56
56
targetCommand =
57
57
CommandUI
58
58
{ commandName = " v2-target"
59
- , commandSynopsis = " List target forms within the project ."
59
+ , commandSynopsis = " Target disclosure ."
60
60
, commandUsage = usageAlternatives " v2-target" [" [TARGETS]" ]
61
61
, commandDescription = Just $ \ _ ->
62
62
wrapText $
63
- " List targets within a build plan. "
63
+ " Reveal the targets of build plan. "
64
64
++ " If no [TARGETS] are given 'all' will be used for selecting a build plan.\n\n "
65
- ++ " The given target can be;\n "
65
+ ++ " A [TARGETS] item can be one of these target forms ;\n "
66
66
++ " - a package target (e.g. [pkg:]package)\n "
67
67
++ " - a component target (e.g. [package:][ctype:]component)\n "
68
68
++ " - all packages (e.g. all)\n "
@@ -81,20 +81,20 @@ targetCommand =
81
81
++ " "
82
82
++ pname
83
83
++ " v2-target all\n "
84
- ++ " List all targets of the package in the current directory "
84
+ ++ " Targets of the package in the current directory "
85
85
++ " or all packages in the project\n "
86
86
++ " "
87
87
++ pname
88
88
++ " v2-target pkgname\n "
89
- ++ " List targets of the package named pkgname in the project\n "
89
+ ++ " Targets of the package named pkgname in the project\n "
90
90
++ " "
91
91
++ pname
92
92
++ " v2-target ./pkgfoo\n "
93
- ++ " List targets of the package in the ./pkgfoo directory\n "
93
+ ++ " Targets of the package in the ./pkgfoo directory\n "
94
94
++ " "
95
95
++ pname
96
96
++ " v2-target cname\n "
97
- ++ " List targets of the component named cname in the project\n "
97
+ ++ " Targets of the component named cname in the project\n "
98
98
++ " "
99
99
, commandDefaultFlags = defaultNixStyleFlags ()
100
100
, commandOptions = const []
0 commit comments