diff options
author | Jan Lehnardt <jan@apache.org> | 2009-11-05 12:29:53 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2009-11-05 12:29:53 +0000 |
commit | d0276eccf24bc39295de08f9d1170751e4c04c7f (patch) | |
tree | bdf6766e28b9b1bb7863c0a07e62069b069d16cf /src | |
parent | ac2900a560c2c4288c4d91622cf3fd6db4959819 (diff) |
typo, thanks David Coallier
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@833038 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_httpd_db.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd_db.erl b/src/couchdb/couch_httpd_db.erl index 3e33bd79..88c51cf7 100644 --- a/src/couchdb/couch_httpd_db.erl +++ b/src/couchdb/couch_httpd_db.erl @@ -45,7 +45,7 @@ handle_request(#httpd{path_parts=[DbName|RestParts],method=Method, false -> delete_db_req(Req, DbName); _Rev -> throw({bad_request, "You tried to DELETE a database with a ?=rev parameter. " - ++ "Did mean to DELETE a document instead?"}) + ++ "Did you mean to DELETE a document instead?"}) end; {_, []} -> do_db_req(Req, fun db_req/2); |