Skip to content

Commit

Permalink
Add docstring to the Boa lexer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anteru committed May 8, 2019
1 parent 5721e86 commit 954043d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pygments/lexers/boa.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# -*- coding: utf-8 -*-
"""
pygments.lexers.boa
~~~~~~~~~~~~~~~~~~~~
Lexers for the Boa language.
:copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""

import re

from pygments.lexer import RegexLexer, words
Expand All @@ -11,7 +21,9 @@

class BoaLexer(RegexLexer):
"""
http://boa.cs.iastate.edu/docs/
Lexer for the `Boa <http://boa.cs.iastate.edu/docs/>`_ language.
.. versionadded:: 2.4
"""
name = 'Boa'
aliases = ['boa']
Expand Down

0 comments on commit 954043d

Please sign in to comment.