summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/extensions.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/extensions.rst b/docs/extensions.rst
index def8047..9e89fb1 100644
--- a/docs/extensions.rst
+++ b/docs/extensions.rst
@@ -117,9 +117,9 @@ update ``mccabe.py`` with this variable as shown below:
off_by_default = True
If we wanted to run the optional extension or check, we need to specify the
-error and warnings via the ``select`` setting or command line argument. In our
-case, we could run ``flake8 --select=C90`` which would run our off_by_default
-example version of the mccabe extension.
+error and warnings via the ``--enable-extension`` command line argument. In our
+case, we could run ``flake8 --enable-extension=C90`` which would enable our
+off_by_default example version of the mccabe extension.
Existing Extensions