diff options
author | Georg Brandl <georg@python.org> | 2011-06-18 10:25:33 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-06-18 10:25:33 +0200 |
commit | a87cf17e0fd30a09aba385ad4bda8cc866d34c97 (patch) | |
tree | 193413696d9d3f2a045414e844a27671cf5fb121 | |
parent | a8bd56780376dadd392ac133154e1aa6ad8f2731 (diff) | |
download | pygments-a87cf17e0fd30a09aba385ad4bda8cc866d34c97.tar.gz |
Add version info to F# lexer.
-rw-r--r-- | pygments/lexers/dotnet.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py index 54b5f8c1..a34b266a 100644 --- a/pygments/lexers/dotnet.py +++ b/pygments/lexers/dotnet.py @@ -521,6 +521,8 @@ class VbNetAspxLexer(DelegatingLexer): class FSharpLexer(RegexLexer): """ For the F# language. + + *New in Pygments 1.5.* """ name = 'FSharp' |