summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSorin Sbarnea <ssbarnea@redhat.com>2020-01-16 11:28:43 -0800
committerAnthony Sottile <asottile@umich.edu>2020-01-16 11:28:43 -0800
commit581a8b759b610042a90ba36c33c7aa313d9e3dc5 (patch)
treee99d595ad3889238657bc776978152b4b0ca154a /docs
parentb56c88fe654af09161a66bf81e00481fa5d2d8c5 (diff)
downloadflake8-581a8b759b610042a90ba36c33c7aa313d9e3dc5.tar.gz
Some typo fixes in git hooks docs
Diffstat (limited to 'docs')
-rw-r--r--docs/source/user/using-hooks.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/user/using-hooks.rst b/docs/source/user/using-hooks.rst
index 25016d5..d156ad0 100644
--- a/docs/source/user/using-hooks.rst
+++ b/docs/source/user/using-hooks.rst
@@ -45,7 +45,7 @@ Built-in Hook Integration
It is strongly suggested to use |Flake8| via `pre-commit`_ over the
built-in hook mechanisms. ``pre-commit`` smooths out many of the rough
edges of ``git`` and is much more battle-tested than the |Flake8|
- hook impementation.
+ hook implementation.
|Flake8| can be integrated into your development workflow in many ways. A
default installation of |Flake8| can install pre-commit hooks for both
@@ -91,7 +91,7 @@ Checking All Modified Files Currently Tracked
|Flake8| aims to make smart choices that keep things fast for users where
possible. As a result, the |Flake8| Git pre-commit will default to only
checking files that have been staged (i.e., added to the index). If, however,
-you are keen to be lazy and not independenty add files to your git index, you
+you are keen to be lazy and not independently add files to your git index, you
can set ``flake8.lazy`` to ``true`` (similar to how you would set
``flake8.strict`` above) and this will check all tracked files.