diff options
author | blackbird <devnull@localhost> | 2006-11-22 16:59:18 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2006-11-22 16:59:18 +0100 |
commit | 5d3c19b60ede893fc231f02063b80d41b0207ac9 (patch) | |
tree | 276a9542cbd2402060c0566da5e61cfd9beccaf6 | |
parent | 8afeb7d3fe48fef776df9ae5541a62c53888703d (diff) | |
download | pygments-5d3c19b60ede893fc231f02063b80d41b0207ac9.tar.gz |
[svn] pykleur -> pygments in the docs
-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'] |