Skip to content

Commit

Permalink
Merge pull request #105 from joneshf/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
garyb authored Jan 1, 2018
2 parents ee131c4 + 4644324 commit be1de05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Control/Monad/RWS/Trans.purs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import Data.Tuple (Tuple(..), uncurry)
data RWSResult state result writer = RWSResult state result writer

-- | The reader-writer-state monad transformer, which combines the operations
-- | of `RWST`, `WriterT` and `StateT` into a single monad transformer.
-- | of `ReaderT`, `WriterT` and `StateT` into a single monad transformer.
newtype RWST r w s m a = RWST (r -> s -> m (RWSResult s a w))

-- | Run a computation in the `RWST` monad.
Expand Down

0 comments on commit be1de05

Please sign in to comment.