summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-10-28 08:54:29 +0200
committerGeorg Brandl <georg@python.org>2006-10-28 08:54:29 +0200
commit2013325baff25fc6c287d5b207d285aebfcc64cd (patch)
treec021717a6e1df8884183e63f8901c4bc1a0668b9 /docs/src
parent8acf8d41e92157a1b50789e7fce8d84bd642d0b1 (diff)
downloadpygments-git-2013325baff25fc6c287d5b207d285aebfcc64cd.tar.gz
[svn] Add genshi text lexer.
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/lexerdevelopment.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/lexerdevelopment.txt b/docs/src/lexerdevelopment.txt
index 80822e1d..a1b9dc67 100644
--- a/docs/src/lexerdevelopment.txt
+++ b/docs/src/lexerdevelopment.txt
@@ -492,7 +492,7 @@ functions. That's an incredible huge amount of functions, much more than you
can put into a regular expression.
But because only `Name` tokens can be function names it's solvable by overriding
-the ``get_tokens_unprocessed`` method. The following lexer subclasses the
+the ``get_tokens_unprocessed()`` method. The following lexer subclasses the
`PythonLexer` so that it highlights some additional names as pseudo keywords:
.. sourcecode:: python