aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDimitris Apostolou <[email protected]>2022-02-22 19:05:39 +0200
committerGitHub <[email protected]>2022-02-22 09:05:39 -0800
commit2f521081ad81cddfe589c2b7e751dec4c2cb06c9 (patch)
tree29dfe3ff16c09ec7ca9c08fb679d203f0de8cc31 /test
parent3bc3e968372e567cbaf3a7a512e15b93b90d2520 (diff)
Fix typos (#7934)
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Readers/DokuWiki.hs4
-rw-r--r--test/Tests/Readers/HTML.hs2
-rw-r--r--test/Tests/Readers/Markdown.hs12
-rw-r--r--test/command/biblatex-crossref-nested.md2
-rw-r--r--test/command/biblatex-title-and-shorttitle.md2
-rw-r--r--test/command/chicago-annotated-bibliography.csl2
-rw-r--r--test/command/chicago-fullnote-bibliography.csl2
-rw-r--r--test/command/chicago-note-bibliography.csl2
-rw-r--r--test/command/din-1505-2.csl2
-rw-r--r--test/command/nested-table-to-asciidoc-6942.md2
10 files changed, 16 insertions, 16 deletions
diff --git a/test/Tests/Readers/DokuWiki.hs b/test/Tests/Readers/DokuWiki.hs
index db52a34a6..b4a7ba72f 100644
--- a/test/Tests/Readers/DokuWiki.hs
+++ b/test/Tests/Readers/DokuWiki.hs
@@ -225,12 +225,12 @@ tests = [ testGroup "inlines"
, "Ordered list" =:
T.unlines [ " - The same list but ordered"
, " - Another item"
- , " - Just use indention for deeper levels"
+ , " - Just use indentation for deeper levels"
, " - That's it"
] =?>
orderedList [ plain "The same list but ordered"
, plain "Another item" <>
- orderedList [ plain "Just use indention for deeper levels" ]
+ orderedList [ plain "Just use indentation for deeper levels" ]
, plain "That's it"
]
, "Multiline list items" =: -- https://www.dokuwiki.org/faq:lists
diff --git a/test/Tests/Readers/HTML.hs b/test/Tests/Readers/HTML.hs
index 5acfbd2f9..eec5da643 100644
--- a/test/Tests/Readers/HTML.hs
+++ b/test/Tests/Readers/HTML.hs
@@ -120,7 +120,7 @@ tests = [ testGroup "base tag"
=?>
codeBlockWith ("a", ["python"], []) "print('hi')"
- , test html "attributes in pre take precendence" $
+ , test html "attributes in pre take precedence" $
"<pre id=\"c\"><code id=\"d\">\nprint('hi mom!')\n</code></pre>"
=?>
codeBlockWith ("c", [], []) "print('hi mom!')"
diff --git a/test/Tests/Readers/Markdown.hs b/test/Tests/Readers/Markdown.hs
index dd2a1b9ae..b1c417b36 100644
--- a/test/Tests/Readers/Markdown.hs
+++ b/test/Tests/Readers/Markdown.hs
@@ -371,13 +371,13 @@ tests = [ testGroup "inline code"
, test markdownMMD "normal superscript"
("x^3^"
=?> para ("x" <> superscript "3"))
- , test markdownMMD "short subscript delimeted by space"
+ , test markdownMMD "short subscript delimited by space"
("O~2 is dangerous"
=?> para ("O" <> subscript "2" <> space <> "is dangerous"))
- , test markdownMMD "short subscript delimeted by newline"
+ , test markdownMMD "short subscript delimited by newline"
("O~2\n"
=?> para ("O" <> subscript "2"))
- , test markdownMMD "short subscript delimeted by EOF"
+ , test markdownMMD "short subscript delimited by EOF"
("O~2"
=?> para ("O" <> subscript "2"))
, test markdownMMD "short subscript delimited by punctuation"
@@ -389,13 +389,13 @@ tests = [ testGroup "inline code"
, test markdownMMD "no nesting in short subscripts"
("y~*2*"
=?> para ("y~" <> emph "2"))
- , test markdownMMD "short superscript delimeted by space"
+ , test markdownMMD "short superscript delimited by space"
("x^2 = y"
=?> para ("x" <> superscript "2" <> space <> "= y"))
- , test markdownMMD "short superscript delimeted by newline"
+ , test markdownMMD "short superscript delimited by newline"
("x^2\n"
=?> para ("x" <> superscript "2"))
- , test markdownMMD "short superscript delimeted by ExF"
+ , test markdownMMD "short superscript delimited by ExF"
("x^2"
=?> para ("x" <> superscript "2"))
, test markdownMMD "short superscript delimited by punctuation"
diff --git a/test/command/biblatex-crossref-nested.md b/test/command/biblatex-crossref-nested.md
index c4b4d6004..bf9d236a4 100644
--- a/test/command/biblatex-crossref-nested.md
+++ b/test/command/biblatex-crossref-nested.md
@@ -2,7 +2,7 @@
% pandoc -f biblatex -t markdown -s
@comment{
-Nested crossreferences (see biber manual v 1.7)
+Nested cross-references (see biber manual v 1.7)
}
diff --git a/test/command/biblatex-title-and-shorttitle.md b/test/command/biblatex-title-and-shorttitle.md
index e268cc244..90e1275c3 100644
--- a/test/command/biblatex-title-and-shorttitle.md
+++ b/test/command/biblatex-title-and-shorttitle.md
@@ -9,7 +9,7 @@ When there’s a biblatex “title” and a “subtitle” field, CSL “title-s
CSL “container-title-short” could also be set
- from biblatex “shortjournal”
-- for inbook, incollection etc. from the “shorttitle” field of the crossreferenced book, collection etc. entry (see item5, item6)
+- for inbook, incollection etc. from the “shorttitle” field of the cross-referenced book, collection etc. entry (see item5, item6)
... but it might not really be worth it, “container-title-short” not being used once in my sample of 70+ CSL styles.
}
diff --git a/test/command/chicago-annotated-bibliography.csl b/test/command/chicago-annotated-bibliography.csl
index 5e891c09e..b91eb963a 100644
--- a/test/command/chicago-annotated-bibliography.csl
+++ b/test/command/chicago-annotated-bibliography.csl
@@ -104,7 +104,7 @@
</names>
</if>
</choose>
- <!--This includes page numers after the container author, e.g. for Introductions -->
+ <!--This includes page numbers after the container author, e.g. for Introductions -->
<choose>
<if variable="container-author author" match="all">
<group delimiter=". ">
diff --git a/test/command/chicago-fullnote-bibliography.csl b/test/command/chicago-fullnote-bibliography.csl
index 7d9c48c54..7034fad85 100644
--- a/test/command/chicago-fullnote-bibliography.csl
+++ b/test/command/chicago-fullnote-bibliography.csl
@@ -102,7 +102,7 @@
</names>
</if>
</choose>
- <!--This includes page numers after the container author, e.g. for Introductions -->
+ <!--This includes page numbers after the container author, e.g. for Introductions -->
<choose>
<if variable="container-author author" match="all">
<group delimiter=". ">
diff --git a/test/command/chicago-note-bibliography.csl b/test/command/chicago-note-bibliography.csl
index faf70949f..f8f7d963b 100644
--- a/test/command/chicago-note-bibliography.csl
+++ b/test/command/chicago-note-bibliography.csl
@@ -109,7 +109,7 @@
</names>
</if>
</choose>
- <!--This includes page numers after the container author, e.g. for Introductions -->
+ <!--This includes page numbers after the container author, e.g. for Introductions -->
<choose>
<if variable="container-author author" match="all">
<group delimiter=". ">
diff --git a/test/command/din-1505-2.csl b/test/command/din-1505-2.csl
index 8d175738f..77e13dec2 100644
--- a/test/command/din-1505-2.csl
+++ b/test/command/din-1505-2.csl
@@ -37,7 +37,7 @@
* correcting errors
known bugs, help appreciated
* Abbreviations (Mitarb.) & (Hrsg. der Reihe) are missing (contributor, seriesEditor labels)
- * "contributor" is not valid as a name variable , nevertheless it works but doesnt validate!
+ * "contributor" is not valid as a name variable , nevertheless it works but doesn't validate!
* author etc. first names should not be abbreviated
* reviewed author seems to be not available as variable (newspaper article)
* thesis type does notoffer a PLACE or FACULTY as variable!
diff --git a/test/command/nested-table-to-asciidoc-6942.md b/test/command/nested-table-to-asciidoc-6942.md
index 2b0f13487..c30580112 100644
--- a/test/command/nested-table-to-asciidoc-6942.md
+++ b/test/command/nested-table-to-asciidoc-6942.md
@@ -1,4 +1,4 @@
-A table within a table should be convertet into a table within table
+A table within a table should be converted into a table within table
```
% pandoc -f html -t asciidoc