]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix typo in GENERIC# docs
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Wed, 28 Jan 2009 18:16:00 +0000 (12:16 -0600)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Wed, 28 Jan 2009 18:16:00 +0000 (12:16 -0600)
core/syntax/syntax-docs.factor

index c99c226a0c3da776df72c12d60b631a2c6f9c19e..e08821bddd5a1a4ceec45e194fffde8a0c6ce9e6 100644 (file)
@@ -557,7 +557,7 @@ HELP: GENERIC:
 
 HELP: GENERIC#
 { $syntax "GENERIC# word n" }
-{ $values { "word" "a new word to define" } { "n" "the stack position to dispatch on, either 0, 1 or 2" } }
+{ $values { "word" "a new word to define" } { "n" "the stack position to dispatch on" } }
 { $description "Defines a new generic word which dispatches on the " { $snippet "n" } "th most element from the top of the stack in the current vocabulary. Initially, it contains no methods, and thus will throw a " { $link no-method } " error when called." }
 { $notes
     "The following two definitions are equivalent:"