From 91607387b1c6cbe9e7a9bfe6d11d1730681dfe60 Mon Sep 17 00:00:00 2001 From: pelonpelon Date: Wed, 4 Mar 2015 20:25:47 -0600 Subject: [PATCH] Update mithril.request.md --- docs/mithril.request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/mithril.request.md b/docs/mithril.request.md index 1f45ccdb..94cc3c1b 100644 --- a/docs/mithril.request.md +++ b/docs/mithril.request.md @@ -167,7 +167,7 @@ var log = function(value) { } var users = m.request({method: "GET", url: "/user"}) - .then(log); + .then(log) .then(function(users) { //add one more user to the response return users.concat({name: "Jane"})