stack-checker: minor help-lint fixes.

db4
John Benediktsson 2015-02-05 07:22:15 -08:00
parent e7fc6a789e
commit 7053d28b6d
3 changed files with 5 additions and 5 deletions

View File

@ -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 }"
}

View File

@ -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." } ;

View File

@ -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." } ;