From 63023ae227e862eeda0c39fd6b82db7d85b2fdee Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Mon, 28 Dec 2009 12:41:45 +1300 Subject: [PATCH] kernel: fix set-callstack docs --- core/kernel/kernel-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/kernel/kernel-docs.factor b/core/kernel/kernel-docs.factor index 87cb1a4709..89ac1c9a05 100644 --- a/core/kernel/kernel-docs.factor +++ b/core/kernel/kernel-docs.factor @@ -48,7 +48,7 @@ HELP: callstack ( -- cs ) HELP: set-callstack ( cs -- * ) { $values { "cs" callstack } } -{ $description "Replaces the call stack contents. The end of the vector becomes the top of the stack. Control flow is transferred immediately to the new call stack." } ; +{ $description "Replaces the call stack contents. Control flow is transferred immediately to the innermost frame of the new call stack." } ; HELP: clear { $description "Clears the data stack." } ;