diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-04-07 18:05:48 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-04-07 18:05:48 +0300 |
commit | eecf6097927421c6f68dcc655afcc85500d2a2c2 (patch) | |
tree | dd4a4f3a9acb4ebb0938e0692b0c4262d399b58e | |
parent | f9aa2eb35368724609ba624f00aed8d033159fcf (diff) | |
download | pandoc-eecf6097927421c6f68dcc655afcc85500d2a2c2.tar.gz |
Muse reader: replace returnF with return . return
-rw-r--r-- | src/Text/Pandoc/Readers/Muse.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Muse.hs b/src/Text/Pandoc/Readers/Muse.hs index 30475d91e..b125ccd6a 100644 --- a/src/Text/Pandoc/Readers/Muse.hs +++ b/src/Text/Pandoc/Readers/Muse.hs @@ -754,7 +754,7 @@ endline :: PandocMonad m => MuseParser m (F Inlines) endline = try $ do newline notFollowedBy blankline - returnF B.softbreak + return $ return B.softbreak parseAnchor :: PandocMonad m => MuseParser m String parseAnchor = try $ do |