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 /src/Text/Pandoc/Class | |
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 'src/Text/Pandoc/Class')
-rw-r--r-- | src/Text/Pandoc/Class/PandocMonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Class/PandocMonad.hs b/src/Text/Pandoc/Class/PandocMonad.hs index 6042973ab..1903d73d8 100644 --- a/src/Text/Pandoc/Class/PandocMonad.hs +++ b/src/Text/Pandoc/Class/PandocMonad.hs @@ -600,7 +600,7 @@ makeCanonical = Posix.joinPath . transformPathParts . splitDirectories go (_:as) ".." = as go as x = x : as --- | Trys to run an action on a file: for each directory given, a +-- | Tries to run an action on a file: for each directory given, a -- filepath is created from the given filename, and the action is run on -- that filepath. Returns the result of the first successful execution -- of the action, or throws a @PandocResourceNotFound@ exception if the |