]> gitweb.factorcode.org Git - factor.git/blobdiff - core/combinators/combinators-docs.factor
Update Windows for word renames, fix lint errors
[factor.git] / core / combinators / combinators-docs.factor
index 8caa39c652f1c81d553cfe3a8bcf67028e2b618d..783b8209d1ef29f4cadcc9e7ff17f57a85e8756f 100644 (file)
@@ -145,9 +145,9 @@ $nl
 "Here is an array containing the " { $link f } " class:"
 { $example "{ POSTPONE: f } ." "{ POSTPONE: f }" }
 "The " { $link f } " object is an instance of the " { $link f } " class:"
-{ $example "USE: classes" "f class ." "POSTPONE: f" }
+{ $example "USE: classes" "f class-of ." "POSTPONE: f" }
 "The " { $link f } " class is an instance of " { $link word } ":"
-{ $example "USE: classes" "\\ f class ." "word" }
+{ $example "USE: classes" "\\ f class-of ." "word" }
 "On the other hand, " { $link t } " is just a word, and there is no class which it is a unique instance of."
 { $example "t \\ t eq? ." "t" }
 "Many words which search collections confuse the case of no element being present with an element being found equal to " { $link f } ". If this distinction is important, there is usually an alternative word which can be used; for example, compare " { $link at } " with " { $link at* } "." ;