diff --git a/core/syntax/syntax-docs.factor b/core/syntax/syntax-docs.factor index 6a7e8116cd..e8f699748f 100644 --- a/core/syntax/syntax-docs.factor +++ b/core/syntax/syntax-docs.factor @@ -566,8 +566,8 @@ HELP: GENERIC# { $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:" - { $code "GENERIC: foo" } - { $code "GENERIC# foo 0" } + { $code "GENERIC: foo ( obj -- )" } + { $code "GENERIC# foo 0 ( obj -- )" } } ; HELP: MATH: