]> gitweb.factorcode.org Git - factor.git/commitdiff
fix typo in example
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 21 Mar 2009 03:40:46 +0000 (22:40 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 21 Mar 2009 03:40:46 +0000 (22:40 -0500)
extra/spider/spider-docs.factor

index 41dd13e918dabe64634c898db006ebfd1c37f7e7..cdbd5e7e09d1ed584eb033d086e65de5513ab225 100644 (file)
@@ -23,7 +23,7 @@ HELP: slurp-heap-while
 
 ARTICLE: "spider-tutorial" "Spider tutorial"
 "To create a new spider, call the " { $link <spider> } " word with a link to the site you wish to spider."
-{ $code <" "http://concatentative.org" <spider> "> }
+{ $code <" "http://concatenative.org" <spider> "> }
 "The max-depth is initialized to 0, which retrieves just the initial page. Let's initialize it to something more fun:"
 { $code <" 1 >>max-depth "> }
 "Now the spider will retrieve the first page and all the pages it links to in the same domain." $nl