From 566cec74b6a8d45ea20e71131b8e40792366d924 Mon Sep 17 00:00:00 2001 From: alaviss Date: Wed, 7 Mar 2018 20:46:02 +0700 Subject: [PATCH] lib/system: Fix programResult documentation (#7307) --- lib/system.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/system.nim b/lib/system.nim index 886ef3c37d..b71a3c73ca 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.}