diff options
author | Justin Cook <jscook@lbl.gov> | 2024-09-24 00:06:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 07:06:54 +0200 |
commit | 971577d85326b6a73e01dc5b77e5151c68be31fc (patch) | |
tree | d1b231bd7bc4291b7a614ed526b945f66ede5e94 | |
parent | 2c36a8aac3dab1d86a8cb60630e460d1db1b7f35 (diff) | |
download | spack-971577d85326b6a73e01dc5b77e5151c68be31fc.tar.gz spack-971577d85326b6a73e01dc5b77e5151c68be31fc.tar.bz2 spack-971577d85326b6a73e01dc5b77e5151c68be31fc.tar.xz spack-971577d85326b6a73e01dc5b77e5151c68be31fc.zip |
spec: fix spelling (#46550)
Signed-off-by: Justin Cook <jscook@lbl.gov>
-rw-r--r-- | lib/spack/spack/spec.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py index 1c566349a4..6ae8fa036d 100644 --- a/lib/spack/spack/spec.py +++ b/lib/spack/spack/spec.py @@ -26,7 +26,7 @@ line is a spec for a particular installation of the mpileaks package. version, like "1.2", or it can be a range of versions, e.g. "1.2:1.4". If multiple specific versions or multiple ranges are acceptable, they can be separated by commas, e.g. if a package will only build with - versions 1.0, 1.2-1.4, and 1.6-1.8 of mavpich, you could say: + versions 1.0, 1.2-1.4, and 1.6-1.8 of mvapich, you could say: depends_on("mvapich@1.0,1.2:1.4,1.6:1.8") @@ -1155,7 +1155,7 @@ def _libs_default_handler(spec: "Spec"): for shared in search_shared: # Since we are searching for link libraries, on Windows search only for - # ".Lib" extensions by default as those represent import libraries for implict links. + # ".Lib" extensions by default as those represent import libraries for implicit links. libs = fs.find_libraries(name, home, shared=shared, recursive=True, runtime=False) if libs: return libs @@ -2497,7 +2497,7 @@ class Spec: spec_like, dep_like = next(iter(d.items())) # If the requirements was for unique nodes (default) - # then re-use keys from the local cache. Otherwise build + # then reuse keys from the local cache. Otherwise build # a new node every time. if not isinstance(spec_like, Spec): spec = spec_cache[spec_like] if normal else Spec(spec_like) @@ -5039,7 +5039,7 @@ class UnsatisfiableVersionSpecError(spack.error.UnsatisfiableSpecError): class UnsatisfiableCompilerSpecError(spack.error.UnsatisfiableSpecError): - """Raised when a spec comiler conflicts with package constraints.""" + """Raised when a spec compiler conflicts with package constraints.""" def __init__(self, provided, required): super().__init__(provided, required, "compiler") |