Update mithril.request.md

This commit is contained in:
pelonpelon 2015-03-04 20:25:47 -06:00
parent 10f291d64a
commit 91607387b1

View file

@ -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"})