From c92c92d9dfdb5f66b591fdd5482deaed0ff7e69d Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Mon, 30 Nov 2015 21:06:58 +0100 Subject: [PATCH] fix missing paren in code --- docs/mithril.render.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mithril.render.md b/docs/mithril.render.md index 39b0a808..f571e429 100644 --- a/docs/mithril.render.md +++ b/docs/mithril.render.md @@ -29,7 +29,7 @@ m.render(document.body, [ m("ul.nav", [ m("li", links.map(function(link) { return m("a", {href: link.url, config: m.route}, link.title) - }) + })) ]) ]); ```