aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-03-15 12:23:33 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-03-15 12:23:33 -0700
commitdf71628d269c2f9fff64cac5d614f187bb08bc21 (patch)
tree5d729001d80e3a6d492568bfaf3e019c5265dd73
parent4eb71693e5850b519479bf6b9783332abbd0b67e (diff)
downloadpandoc-df71628d269c2f9fff64cac5d614f187bb08bc21.tar.gz
Remove redundant import.
-rw-r--r--src/Text/Pandoc/Readers/Org/DocumentTree.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Org/DocumentTree.hs b/src/Text/Pandoc/Readers/Org/DocumentTree.hs
index 9730854c0..f77778ec9 100644
--- a/src/Text/Pandoc/Readers/Org/DocumentTree.hs
+++ b/src/Text/Pandoc/Readers/Org/DocumentTree.hs
@@ -36,7 +36,7 @@ import Control.Arrow ((***))
import Control.Monad (guard, void)
import Data.Char (toLower, toUpper)
import Data.List (intersperse)
-import Data.Monoid ((<>), mconcat)
+import Data.Monoid ((<>))
import Text.Pandoc.Builder (Blocks, Inlines)
import Text.Pandoc.Class (PandocMonad)
import Text.Pandoc.Definition