Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix typos #1969

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/internal/writing-documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Use the option template for new options
All of |Flake8|'s command-line options are documented in the User Guide. Each
option is documented individually using the ``.. option::`` directive provided
by Sphinx. At the top of the document, in a reStructuredText comment, is a
template that should be copied and pasted into place when documening new
template that should be copied and pasted into place when documenting new
options.

.. note::
Expand Down Expand Up @@ -175,7 +175,7 @@ behaviour of a certain piece of configuration or invocation.

Plugin developers will only care about the internals of |Flake8| as much as
they will have to interact with that. Keep discussions of internal to the
mininmum required.
minimum required.

Finally, Flake8 Developers and Contributors need to know how everything fits
together. We don't need detail about every line of code, but cogent
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/main/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def run_checks(self) -> None:
"""Run the actual checks with the FileChecker Manager.

This method encapsulates the logic to make a
:class:`~flake8.checker.Manger` instance run the checks it is
:class:`~flake8.checker.Manager` instance run the checks it is
managing.
"""
assert self.file_checker_manager is not None
Expand Down