changeset 1981:082724c57c38

Fixes in cycle section of the development guide. Field descriptions are improved and misspelled literal names are fixed.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 27 Apr 2017 18:11:49 +0300
parents 5718cf42be55
children 28ee7ab54a90
files xml/en/docs/dev/development_guide.xml
diffstat 1 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/docs/dev/development_guide.xml
+++ b/xml/en/docs/dev/development_guide.xml
@@ -1849,18 +1849,19 @@ It's affected by the root scope <literal
 </listitem>
 
 <listitem>
-<literal>connections</literal>, <literal>connections_n</literal> — per-worker
+<literal>connections</literal>, <literal>connection_n</literal> —
 array of connections of type <literal>ngx_connection_t</literal>, created by
 the event module while initializing each nginx worker.
-The number of connections is set by the <literal>worker_connections</literal>
-directive
+The number of connections <literal>connection_n</literal> is set by the
+<literal>worker_connections</literal> directive
 </listitem>
 
 <listitem>
 <literal>free_connections</literal>,
-<literal>free_connections_n</literal> — the array of currently available
+<literal>free_connection_n</literal> — list and number of currently available
 connections.
-If no connections are available, nginx worker refuses to accept new clients
+If no connections are available, nginx worker refuses to accept new clients or
+connect to upstream servers
 </listitem>
 
 <listitem>