diff options
-rw-r--r-- | docs/src/lexerdevelopment.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/lexerdevelopment.txt b/docs/src/lexerdevelopment.txt index a1b9dc67..d3157fe4 100644 --- a/docs/src/lexerdevelopment.txt +++ b/docs/src/lexerdevelopment.txt @@ -497,8 +497,8 @@ the ``get_tokens_unprocessed()`` method. The following lexer subclasses the .. sourcecode:: python - from pykleur.lexers.agile import PythonLexer - from pykleur.token import Name, Keyword + from pygments.lexers.agile import PythonLexer + from pygments.token import Name, Keyword class MyPythonLexer(PythonLexer): EXTRA_KEYWORDS = ['foo', 'bar', 'foobar', 'barfoo', 'spam', 'eggs'] |