diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-01-06 18:59:07 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2017-01-06 18:59:07 +0100 |
commit | 4da41bdb8ec18b6bdb9bb893532abc40939946dd (patch) | |
tree | 7bc87ce14404c89fabbe5f1eaca3a520bde2428a /src/Text | |
parent | 4ca420e937471c568e6d14e8017e184d0959ae09 (diff) | |
download | pandoc-4da41bdb8ec18b6bdb9bb893532abc40939946dd.tar.gz |
Remove pipe char irking the haddock coverage tool
Haddock documentation strings must be associated with functions. Remove
pipe char from a comment that was moved into a `do` block in
`Readers/Org/Inlines.hs`.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/Org/Inlines.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/Inlines.hs b/src/Text/Pandoc/Readers/Org/Inlines.hs index 56e3777c3..7e1bb61c2 100644 --- a/src/Text/Pandoc/Readers/Org/Inlines.hs +++ b/src/Text/Pandoc/Readers/Org/Inlines.hs @@ -198,7 +198,7 @@ orgRefCite = try $ choice normalOrgRefCite :: OrgParser (F [Citation]) normalOrgRefCite = try $ do mode <- orgRefCiteMode - -- | org-ref style citation key, parsed into a citation of the given mode + -- org-ref style citation key, parsed into a citation of the given mode let orgRefCiteItem :: OrgParser (F Citation) orgRefCiteItem = try $ do key <- orgRefCiteKey |