diff options
author | def <dennis@felsin9.de> | 2015-03-02 14:54:11 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-03-17 19:40:22 +0100 |
commit | 7b4724ea27f5b30cb60fa689a1d449f3290c06e4 (patch) | |
tree | 6cd8ab99e9687afec2e7aca225e0133ed0c6bfad /lib | |
parent | 477b3594ebdeec0d8ecdf1f050a61af7e0f96cbf (diff) | |
download | Nim-7b4724ea27f5b30cb60fa689a1d449f3290c06e4.tar.gz |
PNimrodNode -> NimNode in asyncdispatch
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/asyncdispatch.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index c30c5ad41..38f188c74 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -610,9 +610,9 @@ when defined(windows) or defined(nimdoc): # the empty string (which signals a disconnection) when there is # nothing left to read. retFuture.complete(0) - # TODO: "For message-oriented sockets, where a zero byte message is often - # allowable, a failure with an error code of WSAEDISCON is used to - # indicate graceful closure." + # TODO: "For message-oriented sockets, where a zero byte message is often + # allowable, a failure with an error code of WSAEDISCON is used to + # indicate graceful closure." # ~ http://msdn.microsoft.com/en-us/library/ms741688%28v=vs.85%29.aspx else: # Request to read completed immediately. |