summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-10-06 08:14:03 +0200
committerAndreas Rumpf <rumpf_a@web.de>2017-10-06 08:14:03 +0200
commit2d5fdd288ee34279cab2f6d30b313c067fdd3805 (patch)
tree46557a14fa95465cacdbbc8f19c33e59e2ae70bb /lib/system.nim
parenteddf9abd13f4db6acd71ccda1f8ccfe1232ace53 (diff)
downloadNim-2d5fdd288ee34279cab2f6d30b313c067fdd3805.tar.gz
system.nim: doc comment fix
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim
index dc3152faf..42d5794f5 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -275,7 +275,7 @@ proc low*[T](x: T): T {.magic: "Low", noSideEffect.}
 proc low*[I, T](x: typeDesc[array[I, T]]): I {.magic: "Low", noSideEffect.}
 proc low*(x: cstring): int {.magic: "Low", noSideEffect.}
 proc low*(x: string): int {.magic: "Low", noSideEffect.}
-## returns the lowest possible index of an array, a sequence, a string or
+  ## returns the lowest possible index of an array, a sequence, a string or
   ## the lowest possible value of an ordinal value `x`. As a special
   ## semantic rule, `x` may also be a type identifier.
   ##
@@ -1444,7 +1444,7 @@ elif defined(genode):
     header: "<base/sleep.h>".}
 
 elif defined(nodejs):
-  proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit", 
+  proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit",
     importc: "process.exit", noreturn.}
 
 else: