diff options
author | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2014-06-30 23:17:26 -0400 |
---|---|---|
committer | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2014-06-30 23:17:26 -0400 |
commit | 76f1913368ca68af86dbdc235c5531ae209ea3a3 (patch) | |
tree | acf3ffedd4b77f2408095d26275307a4c0333a79 /pygments | |
parent | 3e7a48d7395dd6f2cbac9340db1c5ca6f38d0241 (diff) | |
download | pygments-76f1913368ca68af86dbdc235c5531ae209ea3a3.tar.gz |
moved void to type and added example file
Diffstat (limited to 'pygments')
-rw-r--r-- | pygments/lexers/_stan_builtins.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/lexers/_stan_builtins.py b/pygments/lexers/_stan_builtins.py index 212d5be2..e148724a 100644 --- a/pygments/lexers/_stan_builtins.py +++ b/pygments/lexers/_stan_builtins.py @@ -4,9 +4,9 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This file contains the names of functions for Stan used by - ``pygments.lexers.math.StanLexer. This is for Stan language version 2.2.0. + ``pygments.lexers.math.StanLexer. This is for Stan language version 2.3.0. - :copyright: Copyright 2014 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -17,7 +17,6 @@ KEYWORDS = [ u'else', u'lp__', u'print', u'return', - u'void', u'while'] TYPES = [ u'cholesky_factor_cov', @@ -31,7 +30,8 @@ TYPES = [ u'cholesky_factor_cov', u'row_vector', u'simplex', u'unit_vector', - u'vector'] + u'vector', + u'void'] FUNCTIONS = [ u'Phi', u'Phi_approx', |