You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2015/07/23 19:43:35 UTC

couchdb-mango git commit: Remove a superfluous closing brace

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 <ad...@cloudant.com>
Authored: Thu Jul 23 13:42:55 2015 -0400
Committer: Adam Kocoloski <ad...@cloudant.com>
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),