Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2016-07-10 19:07:03 +09:00
parent 33153010c5
commit ed8d5f04bb
1 changed files with 3 additions and 3 deletions

View File

@ -4096,7 +4096,7 @@ nghttp2_session_check_server_session(nghttp2_session *session);
* that value as window_size_increment is queued. If the * that value as window_size_increment is queued. If the
* |window_size_increment| is larger than the received bytes from the * |window_size_increment| is larger than the received bytes from the
* remote endpoint, the local window size is increased by that * remote endpoint, the local window size is increased by that
* difference. If the sole intention is to increase the local window * difference. If the sole purpose is to increase the local window
* size, consider to use `nghttp2_session_set_local_window_size()`. * size, consider to use `nghttp2_session_set_local_window_size()`.
* *
* If the |window_size_increment| is negative, the local window size * If the |window_size_increment| is negative, the local window size
@ -4105,8 +4105,8 @@ nghttp2_session_check_server_session(nghttp2_session *session);
* (`nghttp2_option_set_no_auto_window_update()`), and the library * (`nghttp2_option_set_no_auto_window_update()`), and the library
* decided that the WINDOW_UPDATE should be submitted, then * decided that the WINDOW_UPDATE should be submitted, then
* WINDOW_UPDATE is queued with the current received bytes count. If * WINDOW_UPDATE is queued with the current received bytes count. If
* the sole intention is to decrease the local window size, consider * the sole purpose is to decrease the local window size, consider to
* to use `nghttp2_session_set_local_window_size()`. * use `nghttp2_session_set_local_window_size()`.
* *
* If the |window_size_increment| is 0, the function does nothing and * If the |window_size_increment| is 0, the function does nothing and
* returns 0. * returns 0.