Fix misspellings in documentation (#2922)

This commit is contained in:
Nick Smith 2019-05-19 06:13:09 -04:00 committed by Claudiu Popa
parent c58dfdd557
commit 312dde3946
4 changed files with 5 additions and 6 deletions

View File

@ -303,3 +303,5 @@ contributors:
* Martin Vielsmaier: contributor
* Agustin Toledo: contributor
* Nicholas Smith: contributor

View File

@ -7,11 +7,8 @@ What's New in Pylint 2.4.0?
Release date: TBA
* Exclude ``__dict__`` from ``attribute-defined-outside-init``
Close #2909
* Fix pointer on spelling check when the error are more than one time in the same line.
Close #2895
@ -918,7 +915,7 @@ Release date: 2018-07-15
Close #2214
* Fix false-postive undefined-variable in nested lambda
* Fix false-positive undefined-variable in nested lambda
Close #760

View File

@ -239,5 +239,5 @@ intersphinx_mapping = {
}
# Prevent label issues due to colliding section names
# through including mulitple documents
# through including multiple documents
autosectionlabel_prefix_document = True

View File

@ -928,7 +928,7 @@ class ImportsChecker(BaseChecker):
_make_graph(filename, self._internal_dependencies_info(), sect, "internal ")
def _filter_dependencies_graph(self, internal):
"""build the internal or the external depedency graph"""
"""build the internal or the external dependency graph"""
graph = collections.defaultdict(set)
for importee, importers in self.stats["dependencies"].items():
for importer in importers: