changeset 2083:fb5eef3637a4

Avoid double negative in if_not_empty. Use of "not" and "until" in the same sentence makes it confusing. Moreover, use of "until" with something that doesn't describe an event or point in time is wrong.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 11 Dec 2017 19:15:31 +0300
parents fee7627f6a5a
children c79a3e13b684
files xml/en/docs/http/ngx_http_fastcgi_module.xml xml/en/docs/http/ngx_http_scgi_module.xml xml/en/docs/http/ngx_http_uwsgi_module.xml
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/docs/http/ngx_http_fastcgi_module.xml
+++ b/xml/en/docs/http/ngx_http_fastcgi_module.xml
@@ -1242,7 +1242,7 @@ fastcgi_param REDIRECT_STATUS 200;
 
 <para>
 If the directive is specified with <literal>if_not_empty</literal> (1.1.11) then
-such a parameter will not be passed to the server until its value is not empty:
+such a parameter will be passed to the server only if its value is not empty:
 <example>
 fastcgi_param HTTPS           $https if_not_empty;
 </example>
--- a/xml/en/docs/http/ngx_http_scgi_module.xml
+++ b/xml/en/docs/http/ngx_http_scgi_module.xml
@@ -1142,7 +1142,7 @@ location / {
 
 <para>
 If the directive is specified with <literal>if_not_empty</literal> (1.1.11) then
-such a parameter will not be passed to the server until its value is not empty:
+such a parameter will be passed to the server only if its value is not empty:
 <example>
 scgi_param HTTPS $https if_not_empty;
 </example>
--- a/xml/en/docs/http/ngx_http_uwsgi_module.xml
+++ b/xml/en/docs/http/ngx_http_uwsgi_module.xml
@@ -1173,7 +1173,7 @@ location / {
 
 <para>
 If the directive is specified with <literal>if_not_empty</literal> (1.1.11) then
-such a parameter will not be passed to the server until its value is not empty:
+such a parameter will be passed to the server only if its value is not empty:
 <example>
 uwsgi_param HTTPS $https if_not_empty;
 </example>