Skip to content

Commit bc57b84

Browse files
authored
Remove Eff guide, refs documentationjs#96 (documentationjs#236)
1 parent 102a24c commit bc57b84

File tree

3 files changed

+2
-356
lines changed

3 files changed

+2
-356
lines changed

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ This repository is a collaborative effort, so please feel free to make a pull re
3030
- [The Foreign Function Interface (FFI)](guides/FFI.md)
3131
- [FFI Tips](guides/FFI-Tips.md)
3232
- [Generic Programming](guides/Generic.md)
33-
- [Handling Native Effects with the Eff Monad](guides/Eff.md)
3433
- [Custom Type Errors](guides/Custom-Type-Errors.md)
3534
- [PureScript Without Node](guides/PureScript-Without-Node.md)
3635
- [Contrib Library Guidelines](guides/Contrib-Guidelines.md)

guides/Eff.md

-353
This file was deleted.

guides/FFI.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ var test = Test.inOrder(Prelude.ordNumber())(20)(10);
200200

201201
Notice that the `calculateInterest` functions defined above were _pure_: they had no side-effects and produced the same result for the same input on every invocation.
202202

203-
The PureScript function type `a -> b` does not allow for side-effects, so it would be incorrect to assign a function type to a Javascript computation with side-effects. The correct approach in this case is to use the `Eff` type constructor, defined in the `purescript-eff` package, to assign a type to the computation.
203+
The PureScript function type `a -> b` does not allow for side-effects, so it would be incorrect to assign a function type to a Javascript computation with side-effects. The correct approach in this case is to use the `Effect` type constructor, defined in the `purescript-effect` package, to assign a type to the computation.
204204

205-
The `Eff` type constructor and its usage is documented [on the eff page](Eff.md).
205+
The `Effect` type constructor and its usage is documented [on Pursuit](https://pursuit.purescript.org/packages/purescript-effect).
206206

207207
#### Santizing Foreign Data With Data.Foreign
208208

0 commit comments

Comments
 (0)