]> gitweb.factorcode.org Git - factor.git/commitdiff
core-graphics.types: fix help-lint
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 17 Jan 2022 03:57:49 +0000 (19:57 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 17 Jan 2022 03:57:49 +0000 (19:57 -0800)
basis/core-graphics/types/types-docs.factor

index 85302cb5d6daae6c29aef2ab1cbef258b9344bec..f8522ea7974b7c9b9f21d073512aa56785aada1b 100644 (file)
@@ -6,11 +6,11 @@ HELP: <CGRect>
 { $description "Allocates a new " { $snippet "CGRect" } " in the Factor heap." } ;
 
 HELP: <CGPoint>
-{ $values { "x" real } { "y" real } { "point" "an " { $snippet "CGPoint" } } }
+{ $values { "x" real } { "y" real } { "CGPoint" CGPoint } } }
 { $description "Allocates a new " { $snippet "CGPoint" } " in the Factor heap." } ;
 
 HELP: <CGSize>
-{ $values { "w" real } { "h" real } { "size" "an " { $snippet "CGSize" } } }
+{ $values { "w" real } { "h" real } { "CGSize" CGSize } }
 { $description "Allocates a new " { $snippet "CGSize" } " in the Factor heap." } ;
 
 ARTICLE: "core-graphics.types" "Core Graphics types"