Skip to content

Commit 91c1283

Browse files
authored
Point Book Links to book.purescript.org (#316)
* Point Book Links to book.purescrip.org * correction in CONTRIBUTORS.md * change side effects link
1 parent 4a2c12b commit 91c1283

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ If you would prefer to use different terms, please use the section below instead
6868
| [@milesfrain](https://github.com/milesfrain) | Miles Frain | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
6969
| [@GCrispino](https://github.com/gcrispino) | Gabriel Crispino | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
7070
| [@kl0tl](https://github.com/kl0tl) | Cyril Sobierajewicz | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
71+
| [@kurtmilam](https://github.com/kurtmilam) | Kurt Milam | [CC BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/deed) |
7172

7273
### Contributors using Modified Terms
7374

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Topics currently in this repository's scope:
7373
Topics currently *not* in scope:
7474

7575
- Using PureScript libraries (those docs belong with the corresponding libraries)
76-
- A PureScript language teaching course (use the [PureScript by Example](https://leanpub.com/purescript/read) book or other resources)
76+
- A PureScript language teaching course (use the [PureScript by Example](https://book.purescript.org) book or other resources)
7777
- Introduction to package managers and dependency management
7878

7979
Feel free to make an issue to discuss amending the scope.

guides/FFI-Tips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ By moving the `show` reference out to `showSomething` the compiler will pick the
117117

118118
## Why Doesn't my `Eff` Work When Passed to a Normal JS Function?
119119

120-
["Representing Side Effects"](https://leanpub.com/purescript/read#leanpub-auto-representing-side-effects) in *PureScript by Example*.
120+
["Representing Side Effects"](https://book.purescript.org/chapter10.html#representing-side-effects) in *PureScript by Example*.
121121

122122
In order to avoid prematurely evaluating effects (or evaluating effects that should not be evaluated at all), PureScript wraps them in constant functions:
123123

guides/FFI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,4 @@ Developers who define their own foreign data types should take care to document
232232

233233
I have hopefully shown that interoperating with Javascript is simple in both directions, once a few small implementation details are understood. You should now be able to wrap your Javascript libraries for use in PureScript, and vice versa.
234234

235-
The [PureScript book](https://leanpub.com/purescript/read#leanpub-auto-the-foreign-function-interface) contains more information on the FFI, and plenty of examples and exercises for any interested readers.
235+
The [PureScript book](https://book.purescript.org/chapter10.html) contains more information on the FFI, and plenty of examples and exercises for any interested readers.

language/Type-Classes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ main = do
5555

5656
## Multi-Parameter Type Classes
5757

58-
TODO. For now, see the section in [PureScript by Example](https://leanpub.com/purescript/read#leanpub-auto-multi-parameter-type-classes).
58+
TODO. For now, see the section in [PureScript by Example](https://book.purescript.org/chapter6.html#multi-parameter-type-classes).
5959

6060
## Superclasses
6161

@@ -126,7 +126,7 @@ The `|` symbol marks the beginning of functional dependencies, which are separat
126126

127127
Functional dependencies are especially useful with the various `Prim` typeclasses, such as `Prim.Row.Cons`: https://pursuit.purescript.org/builtins/docs/Prim.Row#t:Cons
128128

129-
See also the section in [PureScript by Example](https://leanpub.com/purescript/read#leanpub-auto-functional-dependencies).
129+
See also the section in [PureScript by Example](https://book.purescript.org/chapter6.html#functional-dependencies).
130130

131131
## Type Class Deriving
132132

0 commit comments

Comments
 (0)