Fix the incorrect comment for set_blocking()

pull/8637/head
Terence Zhang 2018-10-30 15:41:32 +08:00 committed by Cruz Monrreal II
parent 8d004c467e
commit 119a2d434d
1 changed files with 2 additions and 2 deletions

View File

@ -155,8 +155,8 @@ public:
* blocking operations such as send/recv/accept return
* NSAPI_ERROR_WOULD_BLOCK if they can not continue.
*
* set_blocking(false) is equivalent to set_timeout(-1)
* set_blocking(true) is equivalent to set_timeout(0)
* set_blocking(false) is equivalent to set_timeout(0)
* set_blocking(true) is equivalent to set_timeout(-1)
*
* @param blocking true for blocking mode, false for non-blocking mode.
*/