]> gitweb.factorcode.org Git - factor.git/commitdiff
syndication: fix help lint
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 31 Mar 2009 09:43:26 +0000 (04:43 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Tue, 31 Mar 2009 09:43:26 +0000 (04:43 -0500)
basis/syndication/syndication-docs.factor
basis/syndication/syndication.factor

index 47bdc3bb362a397f8bb4dcf674dacf28a0d75d75..bc9612f55ccc388b6f78e0d0849a5bcbcd639bb3 100644 (file)
@@ -36,7 +36,7 @@ HELP: download-feed
 { $description "Downloads a feed from a URL using the " { $link "http.client" } "." } ;
 
 HELP: parse-feed
-{ $values { "sequence" "a string or a byte array" } { "feed" feed } }
+{ $values { "seq" "a string or a byte array" } { "feed" feed } }
 { $description "Parses a feed." } ;
 
 HELP: xml>feed
index 3bfc95fe3a7c82ac8a81f0909a5fa175241ea7d2..e30cd6826c7f0dd29df44ae50d5ecbba6fcee05d 100755 (executable)
@@ -106,7 +106,7 @@ TUPLE: entry title url description date ;
         { "feed" [ atom1.0 ] }
     } case ;
 
-GENERIC: parse-feed ( string -- feed )
+GENERIC: parse-feed ( seq -- feed )
 
 M: string parse-feed [ string>xml xml>feed ] with-html-entities ;