diff --git a/lib/pure/sockets.nim b/lib/pure/sockets.nim index 79f409179f..11eeefcb9a 100644 --- a/lib/pure/sockets.nim +++ b/lib/pure/sockets.nim @@ -7,6 +7,10 @@ # distribution, for details about the copyright. # +## **Warning:** Since version 0.10.2 this module is deprecated. +## Use the `net `_ or the +## `rawsockets `_ module instead. +## ## This module implements portable sockets, it supports a mix of different types ## of sockets. Sockets are buffered by default meaning that data will be ## received in ``BufferSize`` (4000) sized chunks, buffering @@ -23,9 +27,6 @@ ## ## Asynchronous sockets are supported, however a better alternative is to use ## the `asyncio `_ module. -## -## Since version 0.10.2 this module is deprecated. Use the `net `_ -## or the `rawsockets `_ module instead. {.deprecated.}