diff options
author | Jason David Davies <jasondavies@apache.org> | 2009-09-14 23:21:41 +0000 |
---|---|---|
committer | Jason David Davies <jasondavies@apache.org> | 2009-09-14 23:21:41 +0000 |
commit | 7e648ff818e2e0718b8b4afce0e0d22d835f5e96 (patch) | |
tree | a81a06b04b2c40819f853e59ca82e74f2275bf61 | |
parent | 2abb74e62571b2c775bcd18cfa8c4117f6a544ce (diff) |
Fix speling.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@814921 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/couchdb/couch_httpd_view.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/couchdb/couch_httpd_view.erl b/src/couchdb/couch_httpd_view.erl index 4af1dc82..531e3b6c 100644 --- a/src/couchdb/couch_httpd_view.erl +++ b/src/couchdb/couch_httpd_view.erl @@ -314,7 +314,7 @@ validate_view_query(start_key, Value, Args) -> case Args#view_query_args.multi_get of true -> Msg = <<"Query parameter `start_key` is " - "not compatiible with multi-get">>, + "not compatible with multi-get">>, throw({query_parse_error, Msg}); _ -> Args#view_query_args{start_key=Value} @@ -324,8 +324,8 @@ validate_view_query(start_docid, Value, Args) -> validate_view_query(end_key, Value, Args) -> case Args#view_query_args.multi_get of true-> - Msg = <<"Query paramter `end_key` is " - "not compatibile with multi-get">>, + Msg = <<"Query parameter `end_key` is " + "not compatible with multi-get">>, throw({query_parse_error, Msg}); _ -> Args#view_query_args{end_key=Value} |