From da9c11eae08f4a2293d090dd5469e754f05b8a14 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Sun, 29 May 2016 19:08:01 -0300 Subject: [PATCH] Fixed broken link (#169) Link to elm's reactivity guide was broken --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff2a90f..57978ee 100644 --- a/README.md +++ b/README.md @@ -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`.