]> gitweb.factorcode.org Git - factor.git/blobdiff - core/generic/standard/standard-docs.factor
factor: Rename GENERIC# to GENERIC#:.
[factor.git] / core / generic / standard / standard-docs.factor
index 13e4554b5a4a718af59dbbe39cc899767cd3e03e..b69543f1c5f2cb940b562228674540092882a59f 100644 (file)
@@ -10,7 +10,7 @@ HELP: standard-combination
 { $examples
     "A generic word for append strings and characters to a sequence, dispatching on the object underneath the top of the stack:"
     { $code
-        "GENERIC# build-string 1 ( elt str -- )"
+        "GENERIC#: build-string 1 ( elt str -- )"
         "M: string build-string swap push-all ;"
         "M: integer build-string push ;"
     }