diff options
| author | Ruslan Ermilov <ru@nginx.com> | 2012-04-12 19:35:41 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@nginx.com> | 2012-04-12 19:35:41 +0000 |
| commit | 43d2b1c04562dbd7c651d8d135d93bb8116b9133 (patch) | |
| tree | a2e14da5559f732dfe50a6bc7e78dae02080688b /src/core | |
| parent | e6724ebe54f3cbe1869cf71a011db5f06e43742d (diff) | |
| download | nginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.tar.gz nginx-43d2b1c04562dbd7c651d8d135d93bb8116b9133.tar.bz2 | |
Fixed grammar in error messages.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/nginx.c | 2 | ||||
| -rw-r--r-- | src/core/ngx_conf_file.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index 19feb0700..f21e77d30 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -649,7 +649,7 @@ ngx_exec_new_binary(ngx_cycle_t *cycle, char *const *argv) if (ngx_rename_file(ccf->oldpid.data, ccf->pid.data) != NGX_OK) { ngx_log_error(NGX_LOG_ALERT, cycle->log, ngx_errno, ngx_rename_file_n " %s back to %s failed after " - "the try to execute the new binary process \"%s\"", + "an attempt to execute new binary process \"%s\"", ccf->oldpid.data, ccf->pid.data, argv[0]); } } 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; } |
