diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2021-03-01 00:17:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:17:19 -0800 |
commit | 56461c280f78c55f538da7f382e1c2c308e04915 (patch) | |
tree | f98e1d9a440725e4bdf3f44a1694aec958299ff6 /lib/pure/asyncnet.nim | |
parent | 26a6ceb34eb2bfca4e39dec2dac2d0a2cdc1bade (diff) | |
download | Nim-56461c280f78c55f538da7f382e1c2c308e04915.tar.gz |
Change stdlib imports to use std prefix in most examples (#17202)
Diffstat (limited to 'lib/pure/asyncnet.nim')
-rw-r--r-- | lib/pure/asyncnet.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/asyncnet.nim b/lib/pure/asyncnet.nim index 346e5cbac..7db8ce41e 100644 --- a/lib/pure/asyncnet.nim +++ b/lib/pure/asyncnet.nim @@ -67,7 +67,7 @@ ## ## .. code-block::nim ## -## import asyncnet, asyncdispatch +## import std/[asyncnet, asyncdispatch] ## ## var clients {.threadvar.}: seq[AsyncSocket] ## |