diff options
author | Michael Hoffmann <brennan.brisad@gmail.com> | 2020-10-16 02:09:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 17:09:29 -0700 |
commit | 988d381aad150431f1b8b46349526fb5379e0fa0 (patch) | |
tree | a51c0e1b613f059ec80a1640dca1010f5762eb72 /src/Text | |
parent | 3c8b3eba177ca045a3051c0132632a0bf749f195 (diff) | |
download | pandoc-988d381aad150431f1b8b46349526fb5379e0fa0.tar.gz |
Fix some small typos in the API documentation (#6751)
While reading the docs I found a couple of small typos.
Diffstat (limited to 'src/Text')
-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 1903d73d8..374da161b 100644 --- a/src/Text/Pandoc/Class/PandocMonad.hs +++ b/src/Text/Pandoc/Class/PandocMonad.hs @@ -160,7 +160,7 @@ setVerbosity verbosity = getVerbosity :: PandocMonad m => m Verbosity getVerbosity = getsCommonState stVerbosity --- | Get the accomulated log messages (in temporal order). +-- | Get the accumulated log messages (in temporal order). getLog :: PandocMonad m => m [LogMessage] getLog = reverse <$> getsCommonState stLog |