summaryrefslogtreecommitdiff
path: root/docs/developer.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/developer.rst')
-rw-r--r--docs/developer.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/developer.rst b/docs/developer.rst
index 0aefbed..3acf2a6 100644
--- a/docs/developer.rst
+++ b/docs/developer.rst
@@ -89,11 +89,11 @@ Several docstrings contain examples directly from the `PEP 8`_ document.
Okay: spam(ham[1], {eggs: 2})
E201: spam( ham[1], {eggs: 2})
-These examples are verified automatically when pycodestyle.py is run with the
-``--doctest`` option. You can add examples for your own check functions.
-The format is simple: ``"Okay"`` or error/warning code followed by colon
-and space, the rest of the line is example source code. If you put ``'r'``
-before the docstring, you can use ``\n`` for newline and ``\t`` for tab.
+These examples are verified automatically when ``pycodestyle.py`` is run with
+the ``--doctest`` option. You can add examples for your own check functions.
+The format is simple: ``"Okay"`` or error/warning code followed by colon and
+space, the rest of the line is example source code. If you put ``'r'`` before
+the docstring, you can use ``\n`` for newline and ``\t`` for tab.
Then be sure to pass the tests::