From e648ce70bbf8d7a3c04a67f5ed91900b0ce2c4fd Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 18 Oct 2011 20:03:19 -0700 Subject: [PATCH] system: fix stack effect for exit in docs. --- core/system/system-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/system/system-docs.factor b/core/system/system-docs.factor index 5668acd66a..ee2fbe4cf3 100644 --- a/core/system/system-docs.factor +++ b/core/system/system-docs.factor @@ -69,7 +69,7 @@ HELP: embedded? { $values { "?" "a boolean" } } { $description "Tests if this Factor instance is embedded in another application." } ; -HELP: exit ( n -- ) +HELP: exit ( n -- * ) { $values { "n" "an integer exit code" } } { $description "Exits the Factor process." } ;