Fix help lint

db4
Slava Pestov 2008-11-11 08:53:11 -06:00
parent e49ee006d1
commit d50f4275d4
2 changed files with 5 additions and 5 deletions

View File

@ -22,12 +22,12 @@ HELP: gl-line
{ $description "Draws a line between two points." } ;
HELP: gl-fill-rect
{ $values { "loc" "a pair of integers" } { "ext" "a pair of integers" } }
{ $description "Draws a filled rectangle with top-left corner " { $snippet "loc" } " and bottom-right corner " { $snippet "ext" } "." } ;
{ $values { "dim" "a pair of integers" } }
{ $description "Draws a filled rectangle with the top-left corner at the origin and the given dimensions." } ;
HELP: gl-rect
{ $values { "loc" "a pair of integers" } { "ext" "a pair of integers" } }
{ $description "Draws the outline of a rectangle with top-left corner " { $snippet "loc" } " and bottom-right corner " { $snippet "ext" } "." } ;
{ $values { "dim" "a pair of integers" } }
{ $description "Draws the outline of a rectangle with the top-left corner at the origin and the given dimensions." } ;
HELP: gen-texture
{ $values { "id" integer } }

View File

@ -52,7 +52,7 @@ HELP: polygon
} ;
HELP: <polygon>
{ $values { "color" "a color specifier" } { "points" "a sequence of points" } }
{ $values { "color" "a color specifier" } { "points" "a sequence of points" } { "polygon" polygon } }
{ $description "Creates a new instance of " { $link polygon } "." } ;
HELP: <polygon-gadget>