summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-10-28 00:01:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-10-28 00:01:44 -0700
commitcb42bb820cff10b38662d077574a94ad78888f94 (patch)
treec0f227049006218c83d541b0fd61cce2ba2e446b /src
parent1cd2d0475008ab74fca54a2b30f145caaf877a68 (diff)
Change order of imports to satisfy older ghc.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Pretty.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Pretty.hs b/src/Text/Pandoc/Pretty.hs
index 40a7d018c..a6e04e4d5 100644
--- a/src/Text/Pandoc/Pretty.hs
+++ b/src/Text/Pandoc/Pretty.hs
@@ -77,8 +77,8 @@ module Text.Pandoc.Pretty (
)
where
-import Control.Monad.State.Strict
import Control.Monad (when)
+import Control.Monad.State.Strict
import Data.Char (isSpace)
import Data.Foldable (toList)
import Data.List (intersperse)