Spellcheck

This commit is contained in:
Federico Ceratto
2016-02-29 11:25:51 +00:00
parent bd95bf58bf
commit d9cb85c2d8
15 changed files with 21 additions and 21 deletions

View File

@@ -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

View File

@@ -74,7 +74,7 @@ proc getEnv*(key: string): string {.tags: [ReadIOEffect].} =
builtin
proc existsEnv*(key: string): bool {.tags: [ReadIOEffect].} =
## Checks for the existance of an environment variable named `key`.
## Checks for the existence of an environment variable named `key`.
builtin
proc fileExists*(filename: string): bool {.tags: [ReadIOEffect].} =
@@ -189,7 +189,7 @@ proc get*(key: string): string =
builtin
proc exists*(key: string): bool =
## Checks for the existance of a configuration 'key'
## Checks for the existence of a configuration 'key'
## like 'gcc.options.always'.
builtin