From 4acac9178b80fdb72e584322ed9897075d60ddde Mon Sep 17 00:00:00 2001 From: eddyystop Date: Wed, 11 Jun 2014 08:28:22 -0400 Subject: [PATCH] Fixing typo in code example --- docs/mithril.module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mithril.module.md b/docs/mithril.module.md index a703d69c..43a88691 100644 --- a/docs/mithril.module.md +++ b/docs/mithril.module.md @@ -69,7 +69,7 @@ var dashboard = { return [ m("h1", controller.greeting), - new user.view(controller.user) + user.view(controller.user) ]; } };