Skip to content

Commit

Permalink
dunai: Group imports (KSG Haskell 1.3.0 - 3.5). Refs #285.
Browse files Browse the repository at this point in the history
Imports should be grouped between external imports, external imports
from the same project (but different libraries) and internal imports.
When groups are used, comments must be used to indicate the nature of
each group.
  • Loading branch information
ivanperez-keera committed Jun 3, 2022
1 parent 877de6d commit ff8db33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dunai/src/Control/Monad/Trans/MSF/State.hs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module Control.Monad.Trans.MSF.State
, runStateS__
) where

-- External
-- External imports
#if !MIN_VERSION_base(4,8,0)
import Control.Applicative
#endif
Expand All @@ -34,7 +34,7 @@ import Control.Monad.Trans.State.Strict hiding (liftCallCC, liftCatch,
liftListen, liftPass)
import Data.Tuple (swap)

-- Internal
-- Internal imports
import Data.MonadicStreamFunction.Core

-- * 'State' 'MSF' running and wrapping
Expand Down

0 comments on commit ff8db33

Please sign in to comment.