summaryrefslogtreecommitdiff
path: root/src/flake8/main
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-09-20 19:15:15 -0700
committerAnthony Sottile <asottile@umich.edu>2020-09-20 19:16:10 -0700
commit2fe70dda6b6327b00f318e121016f3ca372461c2 (patch)
treec4a2ea2bae5e8570c7110633f9b2be8959bad089 /src/flake8/main
parent93209ffac9f7dd5a1bdf2f3a01409d18339554a5 (diff)
downloadflake8-2fe70dda6b6327b00f318e121016f3ca372461c2.tar.gz
fix a few small spelling issues
found via `pre-commit try-repo https://github.com/codespell-project/codespell --all-files`
Diffstat (limited to 'src/flake8/main')
-rw-r--r--src/flake8/main/mercurial.py2
-rw-r--r--src/flake8/main/vcs.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/flake8/main/mercurial.py b/src/flake8/main/mercurial.py
index 4ea410a..c387e84 100644
--- a/src/flake8/main/mercurial.py
+++ b/src/flake8/main/mercurial.py
@@ -21,7 +21,7 @@ def hook(ui, repo, **kwargs):
around Hooks: https://www.mercurial-scm.org/wiki/Hook.
We avoid using the ``ui`` attribute because it can cause issues with
- the GPL license tha Mercurial is under. We don't import it, but we
+ the GPL license that Mercurial is under. We don't import it, but we
avoid using it all the same.
"""
from flake8.main import application
diff --git a/src/flake8/main/vcs.py b/src/flake8/main/vcs.py
index da2f4ff..bf15395 100644
--- a/src/flake8/main/vcs.py
+++ b/src/flake8/main/vcs.py
@@ -12,7 +12,7 @@ from flake8.main import mercurial
# NOTE(sigmavirus24): In the future, we may allow for VCS hooks to be defined
# as plugins, e.g., adding a flake8.vcs entry-point. In that case, this
# dictionary should disappear, and this module might contain more code for
-# managing those bits (in conjuntion with flake8.plugins.manager).
+# managing those bits (in conjunction with flake8.plugins.manager).
_INSTALLERS = {"git": git.install, "mercurial": mercurial.install}