Skip to content

Commit be1de05

Browse files
authored
Merge pull request #105 from joneshf/patch-1
Fix typo
2 parents ee131c4 + 4644324 commit be1de05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Monad/RWS/Trans.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import Data.Tuple (Tuple(..), uncurry)
2727
data RWSResult state result writer = RWSResult state result writer
2828

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

3333
-- | Run a computation in the `RWST` monad.

0 commit comments

Comments
 (0)