aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org.hs
diff options
context:
space:
mode:
authorArtyom Kazak <yom@artyom.me>2014-08-03 19:23:16 +0400
committerArtyom Kazak <yom@artyom.me>2014-08-04 19:41:37 +0400
commitf659644fccc5ee2eb21338ba0059da52a94fccbf (patch)
tree70a34ce0605d640937fb3cf25ce8dfd1e1683d39 /src/Text/Pandoc/Readers/Org.hs
parent81335df9a51740631e75614c1279634f937d650a (diff)
downloadpandoc-f659644fccc5ee2eb21338ba0059da52a94fccbf.tar.gz
Use `mapM_` instead of `() <$ mapM` in one place.
Diffstat (limited to 'src/Text/Pandoc/Readers/Org.hs')
-rw-r--r--src/Text/Pandoc/Readers/Org.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org.hs b/src/Text/Pandoc/Readers/Org.hs
index 34e98380e..003902b9b 100644
--- a/src/Text/Pandoc/Readers/Org.hs
+++ b/src/Text/Pandoc/Readers/Org.hs
@@ -274,7 +274,7 @@ optionalAttributes parser = try $
parseBlockAttributes :: OrgParser ()
parseBlockAttributes = do
attrs <- many attribute
- () <$ mapM (uncurry parseAndAddAttribute) attrs
+ mapM_ (uncurry parseAndAddAttribute) attrs
where
attribute :: OrgParser (String, String)
attribute = try $ do