diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-10-14 21:32:51 +0200 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2020-10-14 22:26:51 +0200 |
commit | 90af1384433b1f537fa51f1018539d4d401ec73b (patch) | |
tree | 8248fc6c2c0e8951fe2fb99a76b0d20c025b16dd /test/command | |
parent | 0b3b77415f8971f21a77ef1f15e06bfb30a7b365 (diff) | |
download | pandoc-90af1384433b1f537fa51f1018539d4d401ec73b.tar.gz |
Fix typos in comments, doc strings, error messages, and tests
Typos reported by
https://fossies.org/linux/test/pandoc-master.tar.gz/codespell.html
See: #6738
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/biblatex-thesis.md | 2 | ||||
-rw-r--r-- | test/command/yaml-metadata-blocks.md | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/command/biblatex-thesis.md b/test/command/biblatex-thesis.md index 6ea23827c..aba8b5648 100644 --- a/test/command/biblatex-thesis.md +++ b/test/command/biblatex-thesis.md @@ -2,7 +2,7 @@ % pandoc -f biblatex -t markdown -s @comment{excerpted from http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/examples/biblatex-examples.bib -TODO: Uppercase letters follwing hyphens need to be converted to lowercase, too (e.g., "r" in "High-Resolution". -- Same for citeproc when doing title-case conversion!) +TODO: Uppercase letters following hyphens need to be converted to lowercase, too (e.g., "r" in "High-Resolution". -- Same for citeproc when doing title-case conversion!) } @thesis{geer, diff --git a/test/command/yaml-metadata-blocks.md b/test/command/yaml-metadata-blocks.md index 5b73cff72..0733623dd 100644 --- a/test/command/yaml-metadata-blocks.md +++ b/test/command/yaml-metadata-blocks.md @@ -21,18 +21,18 @@ scientific: 3.7e-5 bool: true more: False nothing: null -emtpy: [] +empty: [] nested: int: 8 float: 2.5 bool: true more: False nothing: null - emtpy: [] + empty: [] scientific: 3.7e-5 --- ^D -Pandoc (Meta {unMeta = fromList [("bool",MetaBool True),("emtpy",MetaList []),("float",MetaInlines [Str "1.5"]),("int",MetaInlines [Str "7"]),("more",MetaBool False),("nested",MetaMap (fromList [("bool",MetaBool True),("emtpy",MetaList []),("float",MetaInlines [Str "2.5"]),("int",MetaInlines [Str "8"]),("more",MetaBool False),("nothing",MetaInlines [Str "null"]),("scientific",MetaInlines [Str "3.7e-5"])])),("nothing",MetaInlines [Str "null"]),("scientific",MetaInlines [Str "3.7e-5"])]}) +Pandoc (Meta {unMeta = fromList [("bool",MetaBool True),("empty",MetaList []),("float",MetaInlines [Str "1.5"]),("int",MetaInlines [Str "7"]),("more",MetaBool False),("nested",MetaMap (fromList [("bool",MetaBool True),("empty",MetaList []),("float",MetaInlines [Str "2.5"]),("int",MetaInlines [Str "8"]),("more",MetaBool False),("nothing",MetaInlines [Str "null"]),("scientific",MetaInlines [Str "3.7e-5"])])),("nothing",MetaInlines [Str "null"]),("scientific",MetaInlines [Str "3.7e-5"])]}) [] ``` ``` |