Skip to content

Commit 07c6216

Browse files
committed
Merge pull request #6 from xuwei-k/patch-1
fix url
2 parents e7ee15e + 8bf9571 commit 07c6216

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/Control/Monad/Eff.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ data Eff :: # ! -> * -> *
88

99
The `Eff` type constructor is used to represent _native_ effects.
1010

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.
1212

1313
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.
1414

src/Control/Monad/Eff.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Prelude
99

1010
-- | The `Eff` type constructor is used to represent _native_ effects.
1111
-- |
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.
1313
-- |
1414
-- | 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.
1515
foreign import data Eff :: # ! -> * -> *

0 commit comments

Comments
 (0)