From c03b644f0de8945a06a895f8c600821db173073c Mon Sep 17 00:00:00 2001 From: co63oc Date: Thu, 27 Feb 2025 20:58:29 +0800 Subject: [PATCH] Fix --- docs/source/internal/writing-documentation.rst | 4 ++-- src/flake8/main/application.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/internal/writing-documentation.rst b/docs/source/internal/writing-documentation.rst index ee37517..bc38c91 100644 --- a/docs/source/internal/writing-documentation.rst +++ b/docs/source/internal/writing-documentation.rst @@ -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:: @@ -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 diff --git a/src/flake8/main/application.py b/src/flake8/main/application.py index b6bfae3..b654ce2 100644 --- a/src/flake8/main/application.py +++ b/src/flake8/main/application.py @@ -93,7 +93,7 @@ class Application: """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