You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: docs/Control/Monad/Eff.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ data Eff :: # ! -> * -> *
8
8
9
9
The `Eff` type constructor is used to represent _native_ effects.
10
10
11
-
See [Handling Native Effects with the Eff Monad](https://github.com/purescript/purescript/wiki/Handling-Native-Effects-with-the-Eff-Monad) for more details.
11
+
See [Handling Native Effects with the Eff Monad](http://www.purescript.org/learn/eff/) for more details.
12
12
13
13
The first type parameter is a row of effects which represents the contexts in which a computation can be run, and the second type parameter is the return type.
Copy file name to clipboardExpand all lines: src/Control/Monad/Eff.purs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ import Prelude
9
9
10
10
-- | The `Eff` type constructor is used to represent _native_ effects.
11
11
-- |
12
-
-- | See [Handling Native Effects with the Eff Monad](https://github.com/purescript/purescript/wiki/Handling-Native-Effects-with-the-Eff-Monad) for more details.
12
+
-- | See [Handling Native Effects with the Eff Monad](http://www.purescript.org/learn/eff/) for more details.
13
13
-- |
14
14
-- | The first type parameter is a row of effects which represents the contexts in which a computation can be run, and the second type parameter is the return type.
0 commit comments