diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-08-31 16:53:18 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-02 09:18:09 -0400 |
commit | 26c3705da4207af2af4dfc35737d44a18ee400e5 (patch) | |
tree | 2a7e9a7d137484ccbc6deb3d775936a8070b754f /src/Text/Pandoc/Readers/Odt/Generic | |
parent | 1cdebe1170cbf8ea57496cef13fd961c7f8cec54 (diff) | |
download | pandoc-26c3705da4207af2af4dfc35737d44a18ee400e5.tar.gz |
Fix grouping of imports.
Some source files keep imports in tidy groups. Changing
`Text.Pandoc.Compat.Monoid` to `Data.Monoid` could upset that. This
restores tidiness.
Diffstat (limited to 'src/Text/Pandoc/Readers/Odt/Generic')
-rw-r--r-- | src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs b/src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs index c2ef841d8..877443543 100644 --- a/src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs +++ b/src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs @@ -41,8 +41,9 @@ module Text.Pandoc.Readers.Odt.Generic.Fallible where import Control.Applicative import Control.Monad -import Data.Monoid ((<>)) + import qualified Data.Foldable as F +import Data.Monoid ((<>)) -- | Default for now. Will probably become a class at some point. type Failure = () |