Skip to content

Commit

Permalink
html.parser.analyzer: fix help-lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Apr 24, 2013
1 parent 8add807 commit 2700b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extra/html/parser/analyzer/analyzer-docs.factor
Expand Up @@ -2,10 +2,10 @@ USING: help.syntax help.markup html.parser.analyzer sequences strings ;
IN: html.parser.analyzer-docs

HELP: stack-find
{ $values { "seq" sequence } { "quot" { $quotation "( elt -- 1/0/-1 )" } } }
{ $values { "seq" sequence } { "quot" { $quotation "( elt -- 1/0/-1 )" } } { "i/f" "an index or " { $link f } } }
{ $description "Takes a sequence and a quotation expected to return -1 if the element decrements the stack, 0 if it doesnt affect it and 1 if it increments it. Then finds the first element where the stack is empty." } ;

HELP: tag-classifier
{ $values { "string" string } }
{ $values { "string" string } { "quot" { $quotation "( elt -- 1/0/-1 )" } } }
{ $description "Builds a function that classifies tag tuples. Returns 1 if the tag is an opening tag with the given name, -1 if it is a closing tag and 0 otherwise." } ;

0 comments on commit 2700b14

Please sign in to comment.