summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2016-11-19 22:24:54 +0100
committerAlbert Krewinkel <albert@zeitkraut.de>2016-11-19 22:30:02 +0100
commit64413b1ce26bb826a4a348ea3f5e494212a5144a (patch)
treec4eb8d46eb5e522ef52c698b22a1054f57cbfb4f /src/Text/Pandoc
parent5a1796e65002f8ac719ff31e69de002f217069e5 (diff)
Un-break Travis build
Remove whitespace before function documentation The extra spaced cause problems with documentation tools and Travis tests are failing because of this.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Readers/Org/BlockStarts.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Org/BlockStarts.hs b/src/Text/Pandoc/Readers/Org/BlockStarts.hs
index 53a999307..e068f9178 100644
--- a/src/Text/Pandoc/Readers/Org/BlockStarts.hs
+++ b/src/Text/Pandoc/Readers/Org/BlockStarts.hs
@@ -113,12 +113,12 @@ noteMarker = try $ do
<*> many1Till (noneOf "\n\r\t ") (char ']')
]
- -- | Succeeds if the parser is at the end of a block.
+-- | Succeeds if the parser is at the end of a block.
endOfBlock :: OrgParser ()
endOfBlock = lookAhead . try $ do
void blankline <|> anyBlockStart <|> void noteMarker
where
- -- | Succeeds if there is a new block starting at this position.
+ -- Succeeds if there is a new block starting at this position.
anyBlockStart :: OrgParser ()
anyBlockStart = try . choice $
[ exampleLineStart