summaryrefslogtreecommitdiff
path: root/docs/source/user
diff options
context:
space:
mode:
authorMarkus Gerstel <markus.gerstel@diamond.ac.uk>2019-07-19 23:54:44 +0100
committerMarkus Gerstel <markus.gerstel@diamond.ac.uk>2019-07-19 23:56:05 +0100
commitce26d89cbf1ed418f69a2f16446eb592923e545d (patch)
tree836bd0c778a2683e59922a66645a65310412f623 /docs/source/user
parent4a52c99cdee1f1882243564c18a228a2f9972be4 (diff)
downloadflake8-ce26d89cbf1ed418f69a2f16446eb592923e545d.tar.gz
Fix incorrect error string in documentation
In merge request !300 the description of F631 was accidentally used for F633.
Diffstat (limited to 'docs/source/user')
-rw-r--r--docs/source/user/error-codes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/user/error-codes.rst b/docs/source/user/error-codes.rst
index 4644b33..54869c9 100644
--- a/docs/source/user/error-codes.rst
+++ b/docs/source/user/error-codes.rst
@@ -41,7 +41,7 @@ generates its own :term:`error code`\ s for ``pyflakes``:
+------+---------------------------------------------------------------------+
| F632 | use ``==/!=`` to compare ``str``, ``bytes``, and ``int`` literals |
+------+---------------------------------------------------------------------+
-| F633 | assertion test is a tuple, which are always ``True`` |
+| F633 | use of ``>>`` is invalid with ``print`` function |
+------+---------------------------------------------------------------------+
+------+---------------------------------------------------------------------+
| F701 | a ``break`` statement outside of a ``while`` or ``for`` loop |