summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorDaniil Yarancev <21169548+Yardanico@users.noreply.github.com>2017-08-29 16:46:22 +0300
committerAndreas Rumpf <rumpf_a@web.de>2017-08-29 15:46:22 +0200
commiteb8371012c359e387a7c73b97ef333c783086641 (patch)
treeb75bae97d6e85216a80582b0de5fa412e0fc98e6 /lib/system.nim
parent0d07117a65c001720d7b210b104abd427f2feaca (diff)
downloadNim-eb8371012c359e387a7c73b97ef333c783086641.tar.gz
Fix #6288 (#6289 was created for wrong branch) (#6291)
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 51967c7ea..93152a9e0 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -3757,7 +3757,7 @@ when hasAlloc:
 proc locals*(): RootObj {.magic: "Plugin", noSideEffect.} =
   ## generates a tuple constructor expression listing all the local variables
   ## in the current scope. This is quite fast as it does not rely
-  ## on any debug or runtime information. Note that in constrast to what
+  ## on any debug or runtime information. Note that in contrast to what
   ## the official signature says, the return type is not ``RootObj`` but a
   ## tuple of a structure that depends on the current scope. Example:
   ##