summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2018-12-23 13:37:14 +0100
committerMatth?us G. Chajdas <dev@anteru.net>2018-12-23 13:37:14 +0100
commitd9ce64f94f7944d3be7fe53c8e6455e525854d15 (patch)
treee88692373c0845374ebca29ef266a733b1195bd1 /tests
parent84ba788db9bfc58474e20edbbc8c83af94e3350b (diff)
downloadpygments-git-d9ce64f94f7944d3be7fe53c8e6455e525854d15.tar.gz
Fix Stan lexer changes eating whitespace, fix typos in example file.
Diffstat (limited to 'tests')
-rw-r--r--tests/examplefiles/example.stan4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/examplefiles/example.stan b/tests/examplefiles/example.stan
index 69c9ac70..03b7b1b5 100644
--- a/tests/examplefiles/example.stan
+++ b/tests/examplefiles/example.stan
@@ -16,7 +16,7 @@ functions {
data {
// valid name
int abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_abc;
- // all types should be highlighed
+ // all types should be highlighted
int a3;
real foo[2];
vector[3] bar;
@@ -48,7 +48,7 @@ transformed data {
thud <- -12309865;
// ./ and .* should be recognized as operators
grault2 <- grault .* garply ./ garply;
- // ' and \ should be regognized as operators
+ // ' and \ should be recognized as operators
qux2 <- qux' \ bar;
}