summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTanner Prynn <tanner.prynn@nccgroup.trust>2016-02-29 12:03:32 -0600
committerTanner Prynn <tanner.prynn@nccgroup.trust>2016-02-29 12:03:32 -0600
commit635f722ec3eb791e19f41b3231d74923d73bd729 (patch)
tree7d5cb2ec0ea61f300ca5a5e93cf3c68cdd242c6f /doc
parent56eed28a998a10520fe2d7fa06329a1615896189 (diff)
downloadpygments-635f722ec3eb791e19f41b3231d74923d73bd729.tar.gz
remove leftover documentation that I missed in the previous merge
Diffstat (limited to 'doc')
-rw-r--r--doc/docs/lexerdevelopment.rst2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/docs/lexerdevelopment.rst b/doc/docs/lexerdevelopment.rst
index cf51e7b1..c55c98a9 100644
--- a/doc/docs/lexerdevelopment.rst
+++ b/doc/docs/lexerdevelopment.rst
@@ -146,13 +146,11 @@ Select a matching module under ``pygments/lexers``, or create a new module for
your lexer class.
Next, make sure the lexer is known from outside of the module. All modules in
-the ``pygments.lexers`` specify ``__all__``. For example, ``esoteric.py`` sets::
the ``pygments.lexers`` package specify ``__all__``. For example,
``esoteric.py`` sets::
__all__ = ['BrainfuckLexer', 'BefungeLexer', ...]
-Simply add the name of your lexer class to this list.
Add the name of your lexer class to this list (or create the list if your lexer
is the only class in the module).