stack-checker: minor help-lint fixes.
parent
e7fc6a789e
commit
7053d28b6d
|
@ -6,8 +6,8 @@ HELP: consume-d
|
|||
{ $values { "n" integer } { "seq" sequence } }
|
||||
{ $description "Consumes 'n' items from the compile time data stack." }
|
||||
{ $examples
|
||||
{ $example
|
||||
"USING: namespaces prettyprint stack-checker.backend ;"
|
||||
{ $unchecked-example
|
||||
"USING: kernel namespaces prettyprint stack-checker.backend stack-checker.values ;"
|
||||
"0 \ <value> set-global [ 3 consume-d ] with-infer 2drop ."
|
||||
"V{ 1 2 3 }"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
USING: compiler.tree effects help.markup help.syntax math quotations ;
|
||||
USING: compiler.tree effects help.markup help.syntax kernel math quotations ;
|
||||
IN: stack-checker.recursive-state
|
||||
|
||||
HELP: recursive-quotation?
|
||||
{ $values { "quot" quotation } }
|
||||
{ $values { "quot" quotation } { "?" boolean } }
|
||||
{ $description "Checks if the quotation is among the registered recursive quotations." } ;
|
||||
|
|
|
@ -14,4 +14,4 @@ HELP: #>r,
|
|||
|
||||
HELP: #drop,
|
||||
{ $values { "values" sequence } }
|
||||
{ $class-description "Outputs a " { $link #shuffle } " instruction which drops one or more values from the data stack." } ;
|
||||
{ $description "Outputs a " { $link #shuffle } " instruction which drops one or more values from the data stack." } ;
|
||||
|
|
Loading…
Reference in New Issue