We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 549a45b commit 1c6bf7dCopy full SHA for 1c6bf7d
1 file changed
docs/Control/Monad/Eff.md
@@ -24,7 +24,7 @@ instance monadEff :: Monad (Eff e)
24
#### `Pure`
25
26
``` purescript
27
-type Pure a = forall e. Eff e a
+type Pure a = Eff () a
28
```
29
30
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
39
40
Run a pure computation and return its result.
41
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
-
45
#### `untilE`
46
47
0 commit comments