aboutsummaryrefslogtreecommitdiff
path: root/src/core/ngx_conf_file.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2012-04-12 19:35:41 +0000
committerRuslan Ermilov <ru@nginx.com>2012-04-12 19:35:41 +0000
commit43d2b1c04562dbd7c651d8d135d93bb8116b9133 (patch)
treea2e14da5559f732dfe50a6bc7e78dae02080688b /src/core/ngx_conf_file.c
parente6724ebe54f3cbe1869cf71a011db5f06e43742d (diff)
downloadnginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.tar.gz
nginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.zip
Fixed grammar in error messages.
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r--src/core/ngx_conf_file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index 6d998a5f0..bb39f4269 100644
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -1481,7 +1481,8 @@ ngx_conf_check_num_bounds(ngx_conf_t *cf, void *post, void *data)
}
ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "value must be equal or more than %i", bounds->low);
+ "value must be equal to or greater than %i",
+ bounds->low);
return NGX_CONF_ERROR;
}