From fccb16b59cb4039789705d09520e86f2f4b478f8 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Thu, 22 Sep 2022 03:45:45 -0500 Subject: [PATCH] Fix minor documentation around WoWToCLexer (#2245) --- AUTHORS | 1 + pygments/lexers/wowtoc.py | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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"