From cb31ceeeaa4a6c59b89a2f447312a6e2b50f8965 Mon Sep 17 00:00:00 2001 From: Stefan Keim Date: Mon, 5 Oct 2015 12:37:42 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29bbce4..87aff6e 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ var h = require('snabbdom/h'); // helper function for creating VNodes var vnode = h('div#container.two.classes', {on: {click: someFn}}, [ h('span', {style: {fontWeight: 'bold'}}, 'This is bold'), ' and this is just normal text', - h('a', {props: {href: '/foo'}, 'I\'ll take you places!'}) + h('a', {props: {href: '/foo'}}, 'I\'ll take you places!') ]); var container = document.getElementById('container'); // Patch into empty DOM element – this modifies the DOM as a side effect