diff options
author | flywind <xzsflywind@gmail.com> | 2021-03-04 18:34:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 11:34:55 +0100 |
commit | 5670b848cb87d3a437699ecaf67db6a4b35e0626 (patch) | |
tree | f2a128032f053fb0bcbda5797c9b8c56f773b31b /lib/pure/asyncnet.nim | |
parent | c180de60a8ac5459d1e553152132fcfc6cd2fe6f (diff) | |
download | Nim-5670b848cb87d3a437699ecaf67db6a4b35e0626.tar.gz |
use .. warning:: (#17226)
* remove unnecessary when statement * remove outdated codes * use warnings
Diffstat (limited to 'lib/pure/asyncnet.nim')
-rw-r--r-- | lib/pure/asyncnet.nim | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/pure/asyncnet.nim b/lib/pure/asyncnet.nim index 7db8ce41e..f36c427de 100644 --- a/lib/pure/asyncnet.nim +++ b/lib/pure/asyncnet.nim @@ -517,10 +517,9 @@ proc recvLineInto*(socket: AsyncSocket, resString: FutureVar[string], ## The `maxLength` parameter determines the maximum amount of characters ## that can be read. `resString` will be truncated after that. ## - ## **Warning**: The `Peek` flag is not yet implemented. + ## .. warning:: The `Peek` flag is not yet implemented. ## - ## **Warning**: `recvLineInto` on unbuffered sockets assumes that the - ## protocol uses `\r\L` to delimit a new line. + ## .. warning:: `recvLineInto` on unbuffered sockets assumes that the protocol uses `\r\L` to delimit a new line. assert SocketFlag.Peek notin flags ## TODO: result = newFuture[void]("asyncnet.recvLineInto") @@ -611,10 +610,9 @@ proc recvLine*(socket: AsyncSocket, ## The `maxLength` parameter determines the maximum amount of characters ## that can be read. The result is truncated after that. ## - ## **Warning**: The `Peek` flag is not yet implemented. + ## .. warning:: The `Peek` flag is not yet implemented. ## - ## **Warning**: `recvLine` on unbuffered sockets assumes that the protocol - ## uses `\r\L` to delimit a new line. + ## .. warning:: `recvLine` on unbuffered sockets assumes that the protocol uses `\r\L` to delimit a new line. assert SocketFlag.Peek notin flags ## TODO: # TODO: Optimise this |