diff options
author | Georg Brandl <georg@python.org> | 2014-09-19 23:02:18 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-19 23:02:18 +0200 |
commit | 731527e9183d17d0f9eaf35bc0dd263ba84ae5c1 (patch) | |
tree | e80c9918f3efb9862c4fce6c45fb8790e97534c1 /doc | |
parent | 9cb037001991ce4ef3444820d695ddd202dd3b26 (diff) | |
download | pygments-731527e9183d17d0f9eaf35bc0dd263ba84ae5c1.tar.gz |
split up text lexers
Diffstat (limited to 'doc')
-rw-r--r-- | doc/docs/lexerdevelopment.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/docs/lexerdevelopment.rst b/doc/docs/lexerdevelopment.rst index 23f7cdc6..48ede92c 100644 --- a/doc/docs/lexerdevelopment.rst +++ b/doc/docs/lexerdevelopment.rst @@ -584,7 +584,7 @@ the ``get_tokens_unprocessed()`` method. The following lexer subclasses the .. sourcecode:: python - from pygments.lexers.agile import PythonLexer + from pygments.lexers.python import PythonLexer from pygments.token import Name, Keyword class MyPythonLexer(PythonLexer): |