Repository: couchdb-mango Updated Branches: refs/heads/master 4abd4748f -> 0e355411f
Remove a superfluous closing brace Thanks Robert Kowalski for spotting this. Project: http://git-wip-us.apache.org/repos/asf/couchdb-mango/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-mango/commit/0e355411 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-mango/tree/0e355411 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-mango/diff/0e355411 Branch: refs/heads/master Commit: 0e355411f9f904f34a0cb22dc7dd8d868f4a091f Parents: 4abd474 Author: Adam Kocoloski <[email protected]> Authored: Thu Jul 23 13:42:55 2015 -0400 Committer: Adam Kocoloski <[email protected]> Committed: Thu Jul 23 13:42:55 2015 -0400 ---------------------------------------------------------------------- src/mango_httpd.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-mango/blob/0e355411/src/mango_httpd.erl ---------------------------------------------------------------------- diff --git a/src/mango_httpd.erl b/src/mango_httpd.erl index 566ff09..8ac3d3c 100644 --- a/src/mango_httpd.erl +++ b/src/mango_httpd.erl @@ -223,7 +223,7 @@ start_find_resp(Req) -> end_find_resp(Acc0) -> #vacc{resp=Resp00, buffer=Buf, kvs=KVs, threshold=Max} = Acc0, - {ok, Resp0} = chttpd:close_delayed_json_object(Resp00, Buf, "\r\n]}", Max), + {ok, Resp0} = chttpd:close_delayed_json_object(Resp00, Buf, "\r\n]", Max), FinalAcc = lists:foldl(fun({K, V}, Acc) -> JK = ?JSON_ENCODE(K), JV = ?JSON_ENCODE(V),
