changeset 1907:42ed974b83a5

Fixed the duplicated reference in development guide. The ngx_handle_read_event() is mentioned twice, where ngx_handle_write_event() is supposed to be.
author Vladimir Homutov <vl@nginx.com>
date Mon, 13 Feb 2017 19:36:18 +0300
parents e7a721d63544
children d6692a78a444
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	Mon Feb 13 15:53:59 2017 +0300
+++ b/xml/en/docs/dev/development_guide.xml	Mon Feb 13 19:36:18 2017 +0300
@@ -2078,7 +2078,7 @@
 To make nginx event notifications consistent across all notifications systems
 on different platforms, it's required, that the functions
 <literal>ngx_handle_read_event(rev, flags)</literal> and
-<literal>ngx_handle_read_event(wev,flags)</literal> are called after handling
+<literal>ngx_handle_write_event(wev, lowat)</literal> are called after handling
 an I/O socket notification or calling any I/O functions on that socket.
 Normally, these functions are called once in the end of each read or write
 event handler.