summary refs log tree commit diff stats
path: root/lib/pure/net.nim
diff options
context:
space:
mode:
authorreactormonk <hafnersimon@gmail.com>2016-02-29 12:59:05 +0100
committerreactormonk <hafnersimon@gmail.com>2016-02-29 12:59:05 +0100
commitba16d423e0d0f95851a032f7d5705c244d8f6604 (patch)
treeef91d7dd981d91b4632cc1c9a0069d28a75464ce /lib/pure/net.nim
parentbd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff)
parentd9cb85c2d81a447130307d0004b0ef515f3ff241 (diff)
downloadNim-ba16d423e0d0f95851a032f7d5705c244d8f6604.tar.gz
Merge pull request #3913 from FedericoCeratto/devel
Spellcheck
Diffstat (limited to 'lib/pure/net.nim')
-rw-r--r--lib/pure/net.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/net.nim b/lib/pure/net.nim
index 346b656a0..dbb78c4de 100644
--- a/lib/pure/net.nim
+++ b/lib/pure/net.nim
@@ -616,7 +616,7 @@ proc readIntoBuf(socket: Socket, flags: int32): int =
   else:
     result = recv(socket.fd, addr(socket.buffer), cint(socket.buffer.high), flags)
   if result < 0:
-    # Save it in case it gets reset (the Nim codegen occassionally may call
+    # Save it in case it gets reset (the Nim codegen occasionally may call
     # Win API functions which reset it).
     socket.lastError = osLastError()
   if result <= 0: