Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 1c6bf7d

Browse files
author
Jake Brownson
committed
pulp docs
1 parent 549a45b commit 1c6bf7d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

docs/Control/Monad/Eff.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ instance monadEff :: Monad (Eff e)
2424
#### `Pure`
2525

2626
``` purescript
27-
type Pure a = forall e. Eff e a
27+
type Pure a = Eff () a
2828
```
2929

3030
The `Pure` type synonym represents _pure_ computations, i.e. ones in which all effects have been handled.
@@ -39,9 +39,6 @@ runPure :: forall a. Pure a -> a
3939

4040
Run a pure computation and return its result.
4141

42-
Note: since this function has a rank-2 type, it may cause problems to apply this function using the `$` operator. The recommended approach
43-
is to use parentheses instead.
44-
4542
#### `untilE`
4643

4744
``` purescript

0 commit comments

Comments
 (0)