fix: change typo dependnecies to dependencies (#15602)

This commit is contained in:
Ryan Mast
2020-03-20 14:02:01 -07:00
committed by GitHub
parent dc5c73968f
commit 76c9e6d871
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ def setup_parser(subparser):
def inverted_dependencies():
"""Iterate through all packages and return a dictionary mapping package
names to possible dependnecies.
names to possible dependencies.
Virtual packages are included as sources, so that you can query
dependents of, e.g., `mpi`, but virtuals are not included as

View File

@@ -3120,7 +3120,7 @@ def copy(self, deps=True, **kwargs):
A copy of this spec.
Examples:
Deep copy with dependnecies::
Deep copy with dependencies::
spec.copy()
spec.copy(deps=True)