From c91a82ce870e1b600c5c6010d00595a50ba35b5f Mon Sep 17 00:00:00 2001 From: Philipp Fischbeck Date: Fri, 2 Oct 2020 19:37:25 +0000 Subject: [PATCH] Fix typos in --exclude-from-doctest docs --- docs/source/user/options.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/user/options.rst b/docs/source/user/options.rst index 980066c..76cca3b 100644 --- a/docs/source/user/options.rst +++ b/docs/source/user/options.rst @@ -973,7 +973,7 @@ Options and their Descriptions .. prompt:: bash - flake8 --exclude-in-doctest=dir/subdir/file.py,dir/other/file.py dir/ + flake8 --exclude-from-doctest=dir/subdir/file.py,dir/other/file.py dir/ This **can** be specified in config files. @@ -981,10 +981,10 @@ Options and their Descriptions .. code-block:: ini - exclude-in-doctest = + exclude-from-doctest = dir/subdir/file.py, dir/other/file.py - exclude_in_doctest = + exclude_from_doctest = dir/subdir/file.py, dir/other/file.py