summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authoralaviss <alaviss@users.noreply.github.com>2018-03-07 20:46:02 +0700
committerAndreas Rumpf <rumpf_a@web.de>2018-03-07 14:46:02 +0100
commit566cec74b6a8d45ea20e71131b8e40792366d924 (patch)
tree6cdfab6cd52e89b2e9bb73f4083bd59b4a6193c7 /lib
parent10cd89eba9351861b84883eff6a8169ef915aee4 (diff)
downloadNim-566cec74b6a8d45ea20e71131b8e40792366d924.tar.gz
lib/system: Fix programResult documentation (#7307)
Diffstat (limited to 'lib')
-rw-r--r--lib/system.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 886ef3c37..b71a3c73c 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1461,9 +1461,9 @@ when defined(nodejs):
   programResult = 0
 else:
   var programResult* {.exportc: "nim_program_result".}: int
-  ## modify this variable to specify the exit code of the program
-  ## under normal circumstances. When the program is terminated
-  ## prematurely using ``quit``, this value is ignored.
+    ## modify this variable to specify the exit code of the program
+    ## under normal circumstances. When the program is terminated
+    ## prematurely using ``quit``, this value is ignored.
 
 when defined(nimdoc):
   proc quit*(errorcode: int = QuitSuccess) {.magic: "Exit", noreturn.}