# HG changeset patch # User Vladimir Homutov # Date 1487003778 -10800 # Node ID 42ed974b83a53b5284b9b336340760b0c60f0e71 # Parent e7a721d63544301345ecca84de0c8e5b63d545d0 Fixed the duplicated reference in development guide. The ngx_handle_read_event() is mentioned twice, where ngx_handle_write_event() is supposed to be. diff -r e7a721d63544 -r 42ed974b83a5 xml/en/docs/dev/development_guide.xml --- 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 ngx_handle_read_event(rev, flags) and -ngx_handle_read_event(wev,flags) are called after handling +ngx_handle_write_event(wev, lowat) 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.