summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblackbird <devnull@localhost>2006-11-22 16:59:18 +0100
committerblackbird <devnull@localhost>2006-11-22 16:59:18 +0100
commit5d3c19b60ede893fc231f02063b80d41b0207ac9 (patch)
tree276a9542cbd2402060c0566da5e61cfd9beccaf6
parent8afeb7d3fe48fef776df9ae5541a62c53888703d (diff)
downloadpygments-5d3c19b60ede893fc231f02063b80d41b0207ac9.tar.gz
[svn] pykleur -> pygments in the docs
-rw-r--r--docs/src/lexerdevelopment.txt4
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']