]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/stack-checker/alien/alien-docs.factor
help.markup: adding a $slots word to document slots, use it.
[factor.git] / basis / stack-checker / alien / alien-docs.factor
index 3665d8c7937ca6c657bb99480bdc7dec96b676f0..4c5e01f2a19ab89a12ad36bc1d66ee5bacb6cf8d 100644 (file)
@@ -4,10 +4,10 @@ IN: stack-checker.alien
 
 HELP: alien-node-params
 { $class-description "Base class for the parameter slot of " { $link #alien-node } " nodes. It has the following slots:"
-  { $table
-    { { $slot "return" } { "a " { $link c-type-name } " which indicates the type of the functions return value." } }
-    { { $slot "parameters" } { "a " { $link sequence } " of " { $link c-type-name } " giving the types of the functions parameters." } }
-    { { $slot "abi" } { "calling convention of the function the node parameters operates on." } }
+  { $slots
+    { "return" { "a " { $link c-type-name } " which indicates the type of the functions return value." } }
+    { "parameters" { "a " { $link sequence } " of " { $link c-type-name } " giving the types of the functions parameters." } }
+    { "abi" { "calling convention of the function the node parameters operates on." } }
   }
 }
 { $see-also abi } ;