From 9b01f09af4a420a56bef02de07e9927c3fbd33cd Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Thu, 14 Aug 2014 21:30:00 -0400 Subject: [PATCH] fix typo --- docs/web-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web-services.md b/docs/web-services.md index e3a548ef..6339e347 100644 --- a/docs/web-services.md +++ b/docs/web-services.md @@ -138,7 +138,7 @@ In the example below, we take advantage of queuing to debug the AJAX response da ```javascript 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"})