summaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorluz paz <luzpaz@pm.me>2022-08-17 18:02:04 -0400
committerJohn MacFarlane <jgm@berkeley.edu>2022-08-21 20:23:00 -0700
commitaff726b46040ba8d59435d1e6839c30fbae2d783 (patch)
treea8c048f24f3f91fb613dc9b08753d27bc48da25a /test/Tests
parent5d6616608858e60641676a7fa76a87f9516d477d (diff)
Fix typos
Found via `codespell -q 3 -S changelog.md -L bu,fo,ist,mke,multline,noes,ot,pard,pres,tabl,te,tothe`
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Creole.hs12
-rw-r--r--test/Tests/Readers/Org/Inline.hs2
2 files changed, 7 insertions, 7 deletions
diff --git a/test/Tests/Readers/Creole.hs b/test/Tests/Readers/Creole.hs
index 8611a735e..b9a8d56f0 100644
--- a/test/Tests/Readers/Creole.hs
+++ b/test/Tests/Readers/Creole.hs
@@ -119,7 +119,7 @@ tests = [
, plain "blubb" ]
, "nested many unordered lists, one separating space" =:
("* foo\n** bar\n*** third\n*** third two\n** baz\n*** third again\n"
- <> "**** fourth\n***** fith\n* blubb")
+ <> "**** fourth\n***** fifth\n* blubb")
=?> bulletList [ plain "foo"
<> bulletList [ plain "bar"
<> bulletList [ plain "third"
@@ -129,7 +129,7 @@ tests = [
<> bulletList [
plain "fourth"
<> bulletList [
- plain "fith"
+ plain "fifth"
]
]
]
@@ -166,7 +166,7 @@ tests = [
, plain "blubb" ]
, "nested many ordered lists, one separating space" =:
("# foo\n## bar\n### third\n### third two\n## baz\n### third again\n"
- <> "#### fourth\n##### fith\n# blubb")
+ <> "#### fourth\n##### fifth\n# blubb")
=?> orderedList [ plain "foo"
<> orderedList [ plain "bar"
<> orderedList [ plain "third"
@@ -176,7 +176,7 @@ tests = [
<> orderedList [
plain "fourth"
<> orderedList [
- plain "fith"
+ plain "fifth"
]
]
]
@@ -189,7 +189,7 @@ tests = [
, plain "blubb" ]
, "mixed nested ordered and unordered lists, one separating space" =:
("# foo\n** bar\n### third\n### third two\n** baz\n### third again\n"
- <> "#### fourth\n***** fith\n# blubb")
+ <> "#### fourth\n***** fifth\n# blubb")
=?> orderedList [ plain "foo"
<> bulletList [ plain "bar"
<> orderedList [ plain "third"
@@ -199,7 +199,7 @@ tests = [
<> orderedList [
plain "fourth"
<> bulletList [
- plain "fith"
+ plain "fifth"
]
]
]
diff --git a/test/Tests/Readers/Org/Inline.hs b/test/Tests/Readers/Org/Inline.hs
index c38a48cc0..bec796972 100644
--- a/test/Tests/Readers/Org/Inline.hs
+++ b/test/Tests/Readers/Org/Inline.hs
@@ -186,7 +186,7 @@ tests =
, "3" <> subscript "{}"
, "4" <> superscript ("(a(" <> strong "b(c" <> ")d))")
])
- , "Verbatim text can contain equal signes (=)" =:
+ , "Verbatim text can contain equal signs (=)" =:
"=is_subst = True=" =?>
para (codeWith ("", ["verbatim"], []) "is_subst = True")