From ccf89378f80724bf7a3413f76af9f547fb26a7c2 Mon Sep 17 00:00:00 2001 From: Stephen Diehl Date: Thu, 7 Apr 2016 17:33:20 -0400 Subject: [PATCH] fix import formatting --- src/Protolude.hs | 64 ++++++++++++++++++++++++------------------------ 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/src/Protolude.hs b/src/Protolude.hs index a5054b338..ba794e6a4 100644 --- a/src/Protolude.hs +++ b/src/Protolude.hs @@ -24,9 +24,9 @@ import qualified Applicative as X -- Maybe'ized version of partial functions import Safe as X ( - headMay, - initMay, - tailMay + headMay + , initMay + , tailMay ) -- Applicatives @@ -92,45 +92,45 @@ import Data.IntSet as X (IntSet) -- Monad transformers import Control.Monad.State as X ( - MonadState, - State, - StateT, - put, - get, - gets, - modify, - withState, + MonadState + , State + , StateT + , put + , get + , gets + , modify + , withState - runStateT, - execStateT, - evalStateT, + , runStateT + , execStateT + , evalStateT ) import Control.Monad.Reader as X ( - MonadReader, - Reader, - ReaderT, - ask, - asks, - local, - runReader, - runReaderT, + MonadReader + , Reader + , ReaderT + , ask + , asks + , local + , runReader + , runReaderT ) import Control.Monad.Except as X ( - MonadError, - Except, - ExceptT, - throwError, - catchError, - runExcept, - runExceptT, + MonadError + , Except + , ExceptT + , throwError + , catchError + , runExcept + , runExceptT ) import Control.Monad.Trans as X ( - MonadIO, - lift, - liftIO, + MonadIO + , lift + , liftIO ) -- Base types