From 37241c5eee43d03c6f728ac108f5c2965d2467b3 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Tue, 7 Jul 2009 15:12:21 -0500 Subject: [PATCH] sequences: fix replicate example --- core/sequences/sequences-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index 927a404519..0a301b3e38 100755 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -1107,7 +1107,7 @@ HELP: replicate { "newseq" sequence } } { $description "Calls the quotation for every element of the sequence in order. However, the element is not passed to the quotation -- it is dropped, and the quotation produces an element of its own that is collected into a sequence of the same class as the input sequence." } { $examples - { $unchecked-example "USING: prettyprint kernel sequences ;" + { $unchecked-example "USING: kernel prettyprint random sequences ;" "5 [ 100 random ] replicate ." "{ 52 10 45 81 30 }" }