Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2C3D810F69 for ; Wed, 23 Apr 2014 10:25:55 +0000 (UTC) Received: (qmail 90892 invoked by uid 500); 23 Apr 2014 10:25:41 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 90750 invoked by uid 500); 23 Apr 2014 10:25:40 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 90671 invoked by uid 99); 23 Apr 2014 10:25:37 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Apr 2014 10:25:37 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 815AC944FC2; Wed, 23 Apr 2014 10:25:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rnewson@apache.org To: commits@couchdb.apache.org Date: Wed, 23 Apr 2014 10:25:40 -0000 Message-Id: <3fcc6757a08c4441beeb11097ca08e46@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [04/10] couch commit: updated refs/heads/import-master-tmp to 247a772 Fix error message Small typo in the error message. Was ?=rev but should read ?rev= Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/428c3247 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/428c3247 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/428c3247 Branch: refs/heads/import-master-tmp Commit: 428c3247a8921f220778e9a91ee1bf56ddf4c1a3 Parents: c097b2f Author: Andy Wenk Authored: Fri Mar 21 23:16:55 2014 +0100 Committer: Robert Newson Committed: Wed Apr 23 11:21:16 2014 +0100 ---------------------------------------------------------------------- couch_httpd_db.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/428c3247/couch_httpd_db.erl ---------------------------------------------------------------------- diff --git a/couch_httpd_db.erl b/couch_httpd_db.erl index 0a7c17c..6940e47 100644 --- a/couch_httpd_db.erl +++ b/couch_httpd_db.erl @@ -44,7 +44,7 @@ handle_request(#httpd{path_parts=[DbName|RestParts],method=Method, case couch_httpd:qs_value(Req, "rev", false) of false -> delete_db_req(Req, DbName); _Rev -> throw({bad_request, - "You tried to DELETE a database with a ?=rev parameter. " + "You tried to DELETE a database with a ?rev= parameter. " ++ "Did you mean to DELETE a document instead?"}) end; {_, []} ->