# HG changeset patch # User Dmitry Volyntsev # Date 1531934857 -10800 # Node ID 6f9fd9677d1bcb592349346e6c36936beeb43707 # Parent 5cacd6fffade97416b2e85da3067a9d8fa6a0112 Corrected description of r.headersIn and r.headersOut. diff --git a/xml/en/docs/njs/njs_api.xml b/xml/en/docs/njs/njs_api.xml --- a/xml/en/docs/njs/njs_api.xml +++ b/xml/en/docs/njs/njs_api.xml @@ -9,7 +9,7 @@
+ rev="3">
@@ -840,9 +840,9 @@ finishes sending a response to the clien incoming headers object, read-only. -For example, the Header-Name header -can be accessed with the syntax headers['Header-Name'] -or headers.Header_name +For example, the Foo header +can be accessed with the syntax headersIn.foo +or headersIn['Foo'] @@ -850,9 +850,9 @@ or headers.Header_name outgoing headers object, writable. -For example, the Header-Name header -can be accessed with the syntax headers['Header-Name'] -or headers.Header_name +For example, the Foo header +can be accessed with the syntax headersOut.foo +or headersOut['Foo']