summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Drake <adrake@karmiclabs.com>2017-01-17 14:51:58 -0800
committerAndrew Drake <adrake@karmiclabs.com>2017-01-17 14:58:50 -0800
commitb806d122d3f9db4b715d5b55267f193413610fef (patch)
tree1bdd70aa4b5bba4af1b8f6df01cbb7924b26cf36
parente3674c40bc546536e3f7389a7649c98b73ab06b6 (diff)
downloadflake8-b806d122d3f9db4b715d5b55267f193413610fef.tar.gz
Correct "systema" typo in usage documentation.
-rw-r--r--docs/source/manpage.rst2
-rw-r--r--src/flake8/main/options.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/manpage.rst b/docs/source/manpage.rst
index 4988de4..8a58cdd 100644
--- a/docs/source/manpage.rst
+++ b/docs/source/manpage.rst
@@ -72,7 +72,7 @@ All options available as of Flake8 3.1.0::
--exit-zero Exit with status code "0" even if there are errors.
--install-hook=INSTALL_HOOK
Install a hook that is run prior to a commit for the
- supported version control systema.
+ supported version control system.
-j JOBS, --jobs=JOBS Number of subprocesses to use to run checks in
parallel. This is ignored on Windows. The default,
"auto", will auto-detect the number of processors
diff --git a/src/flake8/main/options.py b/src/flake8/main/options.py
index 9780378..131b714 100644
--- a/src/flake8/main/options.py
+++ b/src/flake8/main/options.py
@@ -158,7 +158,7 @@ def register_default_options(option_manager):
'--install-hook', action='callback', type='choice',
choices=vcs.choices(), callback=vcs.install,
help='Install a hook that is run prior to a commit for the supported '
- 'version control systema.'
+ 'version control system.'
)
add_option(