diff --git a/AUTHORS b/AUTHORS index 5d2a810998..18a32c683f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -143,6 +143,7 @@ Other contributors, listed alphabetically, are: * Louis Mandel -- X10 lexer * Louis Marchand -- Eiffel lexer * Simone Margaritelli -- Hybris lexer +* Tim Martin - World of Warcraft TOC lexer * Kirk McDonald -- D lexer * Gordon McGregor -- SystemVerilog lexer * Stephen McKamey -- Duel/JBST lexer diff --git a/pygments/lexers/wowtoc.py b/pygments/lexers/wowtoc.py index 615493cdf3..03a79fe922 100644 --- a/pygments/lexers/wowtoc.py +++ b/pygments/lexers/wowtoc.py @@ -2,7 +2,9 @@ pygments.lexers.wowtoc ~~~~~~~~~~~~~~~~~~~~~~ - Lexer for World of Warcraft TOC files, which describe game addon metadata. + Lexer for World of Warcraft TOC files + + TOC files describe game addons. :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. @@ -44,7 +46,7 @@ class WoWTocLexer(RegexLexer): """ Lexer for World of Warcraft TOC files. - .. versionadded:: 2.13 + .. versionadded:: 2.14 """ name = "World of Warcraft TOC"