mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-19 15:31:28 +00:00
Small doc fixes in net (#17566)
This commit is contained in:
@@ -1427,7 +1427,7 @@ proc recv*(socket: Socket, data: var string, size: int, timeout = -1,
|
||||
flags = {SocketFlag.SafeDisconn}): int =
|
||||
## Higher-level version of `recv`.
|
||||
##
|
||||
## Reads **up to** `size` bytes from `socket` into `buf`.
|
||||
## Reads **up to** `size` bytes from `socket` into `data`.
|
||||
##
|
||||
## For buffered sockets this function will attempt to read all the requested
|
||||
## data. It will read this data in `BufferSize` chunks.
|
||||
@@ -1444,8 +1444,6 @@ proc recv*(socket: Socket, data: var string, size: int, timeout = -1,
|
||||
## A timeout may be specified in milliseconds, if enough data is not received
|
||||
## within the time specified a TimeoutError exception will be raised.
|
||||
##
|
||||
## **Note**: `data` must be initialised.
|
||||
##
|
||||
## .. warning:: Only the `SafeDisconn` flag is currently supported.
|
||||
data.setLen(size)
|
||||
result =
|
||||
@@ -1464,7 +1462,7 @@ proc recv*(socket: Socket, size: int, timeout = -1,
|
||||
flags = {SocketFlag.SafeDisconn}): string {.inline.} =
|
||||
## Higher-level version of `recv` which returns a string.
|
||||
##
|
||||
## Reads **up to** `size` bytes from `socket` into `buf`.
|
||||
## Reads **up to** `size` bytes from `socket` into the result.
|
||||
##
|
||||
## For buffered sockets this function will attempt to read all the requested
|
||||
## data. It will read this data in `BufferSize` chunks.
|
||||
|
||||
Reference in New Issue
Block a user