diff options
author | thatch <devnull@localhost> | 2009-01-03 14:02:06 -0600 |
---|---|---|
committer | thatch <devnull@localhost> | 2009-01-03 14:02:06 -0600 |
commit | 95ab5a1d06a9b647f8f81235ffe5ea3a0855915d (patch) | |
tree | 924b708f4a5245c979578a2a1ea36ca3e382f554 | |
parent | 836a1f67fbe7229a184f931d455489668acfb2ad (diff) | |
download | pygments-95ab5a1d06a9b647f8f81235ffe5ea3a0855915d.tar.gz |
Add docstring to Prolog lexer so docs generation is happy
-rw-r--r-- | pygments/lexers/compiled.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py index bd8fbc26..68160d81 100644 --- a/pygments/lexers/compiled.py +++ b/pygments/lexers/compiled.py @@ -1340,6 +1340,9 @@ class GLShaderLexer(RegexLexer): } class PrologLexer(RegexLexer): + """ + Lexer for Prolog files. + """ name = 'Prolog' aliases = ['prolog'] filenames = ['*.prolog', '*.pro', '*.pl'] |