Skip to content

Commit 26c4b0c

Browse files
committed
clean up list
1 parent 872438b commit 26c4b0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/monad-transformers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ A `Maybe a` wrapped in any other monad, i.e. `m (Maybe a)
1919

2020
### ReaderT
2121

22-
`ReaderT` - a `Reader r a` in which the resulting `a` is wrapped in any other monad, i.e. `r -> m a`
22+
A `Reader r a` in which the resulting `a` is wrapped in any other monad, i.e. `r -> m a`
2323

2424
### StateT
2525

26-
`StateT` - a `State s a` in which the return value `a` and state `s` are wrapped in any other monad, i.e. `s -> m (a, s)`
26+
A `State s a` in which the return value `a` and state `s` are wrapped in any other monad, i.e. `s -> m (a, s)`
2727

2828
### EitherT
2929

30-
`EitherT` - an `Either e a` wrapped in any other monad, i.e. `m (Either e a)`
30+
An `Either e a` wrapped in any other monad, i.e. `m (Either e a)`
3131

3232
* Simple examples of usage
3333
* Pitfalls of Writer laziness

0 commit comments

Comments
 (0)