summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2013-03-29 17:53:47 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2013-03-29 17:53:47 +0000
commitb6f9a758ea9e22cc1dafc7f0f7ad8039d28ee58e (patch)
tree4132f2f64d5efcaa7dfc1ef100ad7a47784797db
parent188d0c0f5b64f1904056129e1fea27ea6b95cf1b (diff)
downloadnginx-b6f9a758ea9e22cc1dafc7f0f7ad8039d28ee58e.tar.gz
Merge of r5127: language in a comment.
Fixed language in a comment preceding ngx_http_index_handler().
-rw-r--r--src/http/modules/ngx_http_index_module.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/http/modules/ngx_http_index_module.c b/src/http/modules/ngx_http_index_module.c
index cfe4ba6cc..d3544db5b 100644
--- a/src/http/modules/ngx_http_index_module.c
+++ b/src/http/modules/ngx_http_index_module.c
@@ -85,12 +85,12 @@ ngx_module_t ngx_http_index_module = {
/*
* Try to open/test the first index file before the test of directory
- * existence because valid requests should be much more than invalid ones.
- * If the file open()/stat() would fail, then the directory stat() should
- * be more quickly because some data is already cached in the kernel.
+ * existence because valid requests should prevail over invalid ones.
+ * If open()/stat() of a file will fail then stat() of a directory
+ * should be faster because kernel may have already cached some data.
* Besides, Win32 may return ERROR_PATH_NOT_FOUND (NGX_ENOTDIR) at once.
- * Unix has ENOTDIR error, however, it's less helpful than Win32's one:
- * it only indicates that path contains an usual file in place of directory.
+ * Unix has ENOTDIR error; however, it's less helpful than Win32's one:
+ * it only indicates that path points to a regular file, not a directory.
*/
static ngx_int_t