Fixed broken link (#169)

Link to elm's reactivity guide was broken
This commit is contained in:
Caio Oliveira 2016-05-29 19:08:01 -03:00 committed by Daniel Compton
parent 3d4e8cde8f
commit da9c11eae0
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ building blocks, so let's now make sure we understand them.
From a ClojureScript perspective, the purpose of an atom is to hold mutable data. From a re-frame
perspective, we'll tweak that paradigm slightly and **view a `ratom` as having a value that
changes over time.** Seems like a subtle distinction, I know, but because of it, re-frame sees a
`ratom` as a Signal. [Pause and read this](http://elm-lang.org/learn/What-is-FRP.elm).
`ratom` as a Signal. [Pause and read this](http://elm-lang.org:1234/guide/reactivity).
The 2nd building block, `reaction`, acts a bit like a function. It's a macro which wraps some
`computation` (a block of code) and returns a `ratom` holding the result of that `computation`.