From 5670b848cb87d3a437699ecaf67db6a4b35e0626 Mon Sep 17 00:00:00 2001 From: flywind Date: Thu, 4 Mar 2021 18:34:55 +0800 Subject: use .. warning:: (#17226) * remove unnecessary when statement * remove outdated codes * use warnings --- lib/pure/asyncnet.nim | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'lib/pure/asyncnet.nim') 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 -- cgit 1.4.1-2-gfad0