comparison src/http/modules/ngx_http_dav_module.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents f9a96545fee7
children d620f497c50f
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
156 156
157 case NGX_HTTP_PUT: 157 case NGX_HTTP_PUT:
158 158
159 if (r->uri.data[r->uri.len - 1] == '/') { 159 if (r->uri.data[r->uri.len - 1] == '/') {
160 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, 160 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
161 "can not PUT to a collection"); 161 "cannot PUT to a collection");
162 return NGX_HTTP_CONFLICT; 162 return NGX_HTTP_CONFLICT;
163 } 163 }
164 164
165 r->request_body_in_file_only = 1; 165 r->request_body_in_file_only = 1;
166 r->request_body_in_persistent_file = 1; 166 r->request_body_in_persistent_file = 1;