summaryrefslogtreecommitdiff
path: root/lib/spack/spack/cmd/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/cmd/help.py')
-rw-r--r--lib/spack/spack/cmd/help.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/help.py b/lib/spack/spack/cmd/help.py
index ab94320ca8..8178ef79ed 100644
--- a/lib/spack/spack/cmd/help.py
+++ b/lib/spack/spack/cmd/help.py
@@ -86,12 +86,12 @@ def setup_parser(subparser):
help_all_group = subparser.add_mutually_exclusive_group()
help_all_group.add_argument(
'-a', '--all', action='store_const', const='long', default='short',
- help='print all available commands')
+ help='list all available commands and options')
help_spec_group = subparser.add_mutually_exclusive_group()
help_spec_group.add_argument(
'--spec', action='store_const', dest='guide', const='spec',
- default=None, help='print all available commands')
+ default=None, help='help on the package specification syntax')
def help(parser, args):