summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPaul Spencer <32964672+pwablito@users.noreply.github.com>2021-08-23 13:29:20 -0600
committerGitHub <noreply@github.com>2021-08-23 21:29:20 +0200
commit01cbf3b81c9e0db2beb32036980140fdc4e16197 (patch)
treed41ba7f505792f12d98aaad01dc01d6cb4ae16fd /lib
parent6e68792ded1b678ee7941d292cc6c0d90e080162 (diff)
downloadspack-01cbf3b81c9e0db2beb32036980140fdc4e16197.tar.gz
spack-01cbf3b81c9e0db2beb32036980140fdc4e16197.tar.bz2
spack-01cbf3b81c9e0db2beb32036980140fdc4e16197.tar.xz
spack-01cbf3b81c9e0db2beb32036980140fdc4e16197.zip
Spelling fixes (#25570)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py
index 98e150af50..b0f00629ce 100644
--- a/lib/spack/spack/cmd/install.py
+++ b/lib/spack/spack/cmd/install.py
@@ -219,7 +219,7 @@ def install_specs(cli_args, kwargs, specs):
# If there is any ambiguity in the above call to matching_spec
# (i.e. if more than one spec in the environment matches), then
- # SpackEnvironmentError is rasied, with a message listing the
+ # SpackEnvironmentError is raised, with a message listing the
# the matches. Getting to this point means there were either
# no matches or exactly one match.
@@ -243,7 +243,7 @@ def install_specs(cli_args, kwargs, specs):
if m_spec in env.roots() or cli_args.no_add:
# either the single match is a root spec (and --no-add is
- # the default for roots) or --no-add was stated explictly
+ # the default for roots) or --no-add was stated explicitly
tty.debug('just install {0}'.format(m_spec.name))
specs_to_install.append(m_spec)
else: