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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ def setup_parser(subparser):
def inverted_dependencies(): def inverted_dependencies():
"""Iterate through all packages and return a dictionary mapping package """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 Virtual packages are included as sources, so that you can query
dependents of, e.g., `mpi`, but virtuals are not included as 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. A copy of this spec.
Examples: Examples:
Deep copy with dependnecies:: Deep copy with dependencies::
spec.copy() spec.copy()
spec.copy(deps=True) spec.copy(deps=True)