summary refs log tree commit diff stats
path: root/lib/system/gc_common.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/system/gc_common.nim
parentbd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff)
parentd9cb85c2d81a447130307d0004b0ef515f3ff241 (diff)
downloadNim-ba16d423e0d0f95851a032f7d5705c244d8f6604.tar.gz
Merge pull request #3913 from FedericoCeratto/devel
Spellcheck
Diffstat (limited to 'lib/system/gc_common.nim')
-rw-r--r--lib/system/gc_common.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/gc_common.nim b/lib/system/gc_common.nim
index 013dc55f8..a4676d26e 100644
--- a/lib/system/gc_common.nim
+++ b/lib/system/gc_common.nim
@@ -91,7 +91,7 @@ when allowForeignThreadGc:
     ## this thread will only be initialized once per thread, no matter how often
     ## it is called.
     ##
-    ## This function is availble only when ``--threads:on`` and ``--tlsEmulation:off``
+    ## This function is available only when ``--threads:on`` and ``--tlsEmulation:off``
     ## switches are used
     if not localGcInitialized:
       localGcInitialized = true
@@ -100,7 +100,7 @@ when allowForeignThreadGc:
       initGC()
 else:
   template setupForeignThreadGc*(): stmt =
-    {.error: "setupForeignThreadGc is availble only when ``--threads:on`` and ``--tlsEmulation:off`` are used".}
+    {.error: "setupForeignThreadGc is available only when ``--threads:on`` and ``--tlsEmulation:off`` are used".}
 
 # ----------------- stack management --------------------------------------
 #  inspired from Smart Eiffel