Skip to content

Commit

Permalink
Fix module reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 committed Aug 25, 2015
1 parent a6350a0 commit 1343de4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/Control/Monad/RWS.purs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ module Control.Monad.RWS

import Prelude

import Control.Monad.RWS.Trans
import Data.Identity
import Data.Monoid
import Data.Tuple

import Control.Monad.RWS.Class
import Control.Monad.RWS.Trans

-- | The `RWS` monad is a synonym for the `RWST` monad transformer, applied
-- | to the `Identity` monad.
type RWS r w s = RWST r w s Identity
Expand Down
1 change: 1 addition & 0 deletions src/Control/Monad/RWS/Class.purs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import Prelude

import Data.Monoid

import Control.Monad.Trans
import Control.Monad.Reader.Class
import Control.Monad.State.Class
import Control.Monad.Writer.Class
Expand Down
4 changes: 3 additions & 1 deletion src/Control/Monad/Reader.purs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ module Control.Monad.Reader

import Prelude

import Control.Monad.Reader.Trans
import Data.Identity

import Control.Monad.Reader.Class
import Control.Monad.Reader.Trans

-- | The `Reader` monad is a synonym for the `ReaderT` monad transformer, applied
-- | to the `Identity` monad.
type Reader r = ReaderT r Identity
Expand Down
4 changes: 3 additions & 1 deletion src/Control/Monad/State.purs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ module Control.Monad.State

import Prelude

import Control.Monad.State.Trans
import Data.Identity
import Data.Tuple

import Control.Monad.State.Class
import Control.Monad.State.Trans

-- | The `State` monad is a synonym for the `StateT` monad transformer, applied
-- | to the `Identity` monad.
type State s = StateT s Identity
Expand Down
4 changes: 3 additions & 1 deletion src/Control/Monad/Writer.purs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ module Control.Monad.Writer

import Prelude

import Control.Monad.Writer.Trans
import Data.Identity
import Data.Monoid
import Data.Tuple

import Control.Monad.Writer.Class
import Control.Monad.Writer.Trans

-- | The `Writer` monad is a synonym for the `WriterT` monad transformer, applied
-- | to the `Identity` monad.
type Writer w = WriterT w Identity
Expand Down

0 comments on commit 1343de4

Please sign in to comment.