Skip to content

Commit

Permalink
spec: fix spelling (spack#46550)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Cook <jscook@lbl.gov>
  • Loading branch information
jscook2345 authored Sep 24, 2024
1 parent 2c36a8a commit 971577d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/spack/spack/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
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")
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -2497,7 +2497,7 @@ def spec_builder(d):
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)
Expand Down Expand Up @@ -5039,7 +5039,7 @@ def __init__(self, provided, required):


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")
Expand Down

0 comments on commit 971577d

Please sign in to comment.