From 5437be051d40cc89cf11c223f61f64f774223399 Mon Sep 17 00:00:00 2001 From: sfthurber <38381823+sfthurber@users.noreply.github.com> Date: Fri, 1 Jun 2018 07:30:36 -0400 Subject: [PATCH] change line 33 to: var ractive = new Ractive({ bug: var ractive = Ractive({ fix: var ractive = new Ractive({ --- docs/tutorials/hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/hello-world.md b/docs/tutorials/hello-world.md index f8642d4..8addd58 100644 --- a/docs/tutorials/hello-world.md +++ b/docs/tutorials/hello-world.md @@ -30,7 +30,7 @@ That's not very exciting. Let's make our template more templatey – replace the Then, add some data to it, by adding a data initialisation option to our code on the script tab so that it looks like this: ```js -var ractive = Ractive({ +var ractive = new Ractive({ target: output, template: template, data: { greeting: 'Hello', name: 'world' }