changeset 2009:9b7302e3b21f

DevGuide: fixed variables example.
author Vladimir Homutov <vl@nginx.com>
date Wed, 05 Jul 2017 15:30:48 +0300
parents 1f2f9fa97065
children 18ff9016b82f
files xml/en/docs/dev/development_guide.xml
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/docs/dev/development_guide.xml	Wed Jul 05 15:30:22 2017 +0300
+++ b/xml/en/docs/dev/development_guide.xml	Wed Jul 05 15:30:48 2017 +0300
@@ -4855,7 +4855,7 @@
 <programlisting>
 static ngx_http_variable_t  ngx_http_foo_vars[] = {
 
-    { ngx_string("foo_v1"), NULL, ngx_http_foo_v1_variable, NULL, 0, 0 },
+    { ngx_string("foo_v1"), NULL, ngx_http_foo_v1_variable, 0, 0, 0 },
 
     { ngx_null_string, NULL, NULL, 0, 0, 0 }
 };