summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorSatish BD <bdsatish@gmail.com>2013-12-23 04:29:50 +0200
committerSatish BD <bdsatish@gmail.com>2013-12-23 04:29:50 +0200
commit033938a53a62399d45c5fd6fe9c4e798431c964f (patch)
treea2340bec81097aa0451701ad65d387dc7d12bad0 /lib/system
parent52a8226edda05f2d3baad791639a1c2fe7f103cc (diff)
downloadNim-033938a53a62399d45c5fd6fe9c4e798431c964f.tar.gz
Correct the spelling of the word 'implicitly'
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/threads.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/threads.nim b/lib/system/threads.nim
index 104ca63c1..80420d791 100644
--- a/lib/system/threads.nim
+++ b/lib/system/threads.nim
@@ -295,7 +295,7 @@ template ThreadProcWrapperBody(closure: expr) {.immediate.} =
 when defined(windows):
   proc threadProcWrapper[TArg](closure: pointer): int32 {.stdcall.} = 
     ThreadProcWrapperBody(closure)
-    # implicitely return 0
+    # implicitly return 0
 else:
   proc threadProcWrapper[TArg](closure: pointer) {.noconv.} = 
     ThreadProcWrapperBody(closure)