]> gitweb.factorcode.org Git - factor.git/blobdiff - core/continuations/continuations-docs.factor
core: callstack is a builtin type and a class name. rename the *stack words that...
[factor.git] / core / continuations / continuations-docs.factor
index ca58087a124e712f5448af5d6b760b4a330a5f69..4132bacc1f561acb693b77b8b7b1b8ee35d56c9c 100644 (file)
@@ -71,15 +71,15 @@ ARTICLE: "continuations.private" "Continuation implementation details"
 }
 "The five stacks can be read and written:"
 { $subsections
-    datastack
+    get-datastack
     set-datastack
-    retainstack
+    get-retainstack
     set-retainstack
-    callstack
+    get-callstack
     set-callstack
-    namestack
+    get-namestack
     set-namestack
-    catchstack
+    get-catchstack
     set-catchstack
 } ;
 
@@ -112,7 +112,7 @@ HELP: catchstack*
 { $values { "catchstack" "a vector of continuations" } }
 { $description "Outputs the current catchstack." } ;
 
-HELP: catchstack
+HELP: get-catchstack
 { $values { "catchstack" "a vector of continuations" } }
 { $description "Outputs a copy of the current catchstack." } ;