From a48cf080f497df47f843b38b0307d7eed0e7b51c Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Fri, 13 Feb 2015 13:42:04 -0500 Subject: [PATCH] fix return value in doc --- docs/mithril.request.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/mithril.request.md b/docs/mithril.request.md index c133a0b3..ad89a482 100644 --- a/docs/mithril.request.md +++ b/docs/mithril.request.md @@ -164,6 +164,7 @@ In the example below, we take advantage of queuing to debug the AJAX response da //a FP-friendly console.log var log = function(value) { console.log(value) + return value } var users = m.request({method: "GET", url: "/user"})