diff options
author | Andreas Baumbach <healther@users.noreply.github.com> | 2018-07-08 20:28:46 +0200 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-07-08 20:28:46 +0200 |
commit | 21a46fb2cead8ad926ce0e5efcf7ad4157e5bce2 (patch) | |
tree | 941b1158dce28411f9886dbecafdfc1e9a268d02 | |
parent | 53c0c5701c364ebdd10f56d7063a693d2059ff15 (diff) | |
download | spack-21a46fb2cead8ad926ce0e5efcf7ad4157e5bce2.tar.gz spack-21a46fb2cead8ad926ce0e5efcf7ad4157e5bce2.tar.bz2 spack-21a46fb2cead8ad926ce0e5efcf7ad4157e5bce2.tar.xz spack-21a46fb2cead8ad926ce0e5efcf7ad4157e5bce2.zip |
fix typo in help of `spack clone` prefix is singular (#8658)
Change-Id: I3bfe5b4ba497fae57d5382502ea9a1b054688fdb
-rw-r--r-- | lib/spack/spack/cmd/clone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/clone.py b/lib/spack/spack/cmd/clone.py index f8b3f899ee..c523f26eb6 100644 --- a/lib/spack/spack/cmd/clone.py +++ b/lib/spack/spack/cmd/clone.py @@ -43,7 +43,7 @@ def setup_parser(subparser): help="name of the remote to clone from", default='origin') subparser.add_argument( 'prefix', - help="names of prefix where we should install spack") + help="name of prefix where we should install spack") def get_origin_info(remote): |