Skip to content

Commit

Permalink
Merge branch 'spelling' into 'master'
Browse files Browse the repository at this point in the history
Spelling and grammar fixes

See merge request pycqa/flake8!232
  • Loading branch information
sigmavirus24 committed May 20, 2018
2 parents 30b0e45 + 9f74e7a commit d6eea40
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ min-public-methods=2
# Maximum number of public methods for a class (see R0904).
max-public-methods=20

# Maximum number of boolean expressions in a if statement
# Maximum number of boolean expressions in an if statement
max-bool-expr=5


Expand Down
2 changes: 1 addition & 1 deletion docs/source/internal/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributing to Flake8
========================

There are many ways to contriubte to |Flake8|, and we encourage them all:
There are many ways to contribute to |Flake8|, and we encourage them all:

- contributing bug reports and feature requests

Expand Down
2 changes: 1 addition & 1 deletion docs/source/plugin-development/formatters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Let's do that next.
return 'Example formatter: {0!r}'.format(error)
With that we're done. Obviously this isn't a very useful formatter, but it
should highlight the simplicitly of creating a formatter with Flake8. If we
should highlight the simplicity of creating a formatter with Flake8. If we
wanted to instead create a formatter that aggregated the results and returned
XML, JSON, or subunit we could also do that. |Flake8| interacts with the
formatter in two ways:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_long_description():
],
'flake8.extension': [
'F = flake8.plugins.pyflakes:FlakesChecker',
# PEP-0008 checks provied by PyCQA/pycodestyle
# PEP-0008 checks provided by PyCQA/pycodestyle
PEP8_PLUGIN('tabs_or_spaces'),
PEP8_PLUGIN('tabs_obsolete'),
PEP8_PLUGIN('trailing_whitespace'),
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/style_guide.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Violation(_Violation):

def is_inline_ignored(self, disable_noqa):
# type: (Violation) -> bool
"""Determine if an comment has been added to ignore this line.
"""Determine if a comment has been added to ignore this line.
:param bool disable_noqa:
Whether or not users have provided ``--disable-noqa``.
Expand Down

0 comments on commit d6eea40

Please sign in to comment.