diff --git a/basis/grouping/grouping-docs.factor b/basis/grouping/grouping-docs.factor index ff8a3f6ac4..80ec52faf5 100644 --- a/basis/grouping/grouping-docs.factor +++ b/basis/grouping/grouping-docs.factor @@ -129,8 +129,8 @@ HELP: "{ 113/400 167/400 201/400 241/400 243/400 91/200 1/4 }" } { $example - "USING: kernel sequences grouping prettyprint ;" - "{ 1 2 3 4 5 6 } 3 second ." + "USING: arrays kernel sequences grouping prettyprint ;" + "{ 1 2 3 4 5 6 } 3 second >array ." "{ 2 3 4 }" } } ; @@ -140,8 +140,8 @@ HELP: { $description "Outputs a virtual sequence whose elements are overlapping slices of " { $snippet "n" } " elements from the underlying sequence, starting with each of its elements and wrapping around the end of the sequence." } { $examples { $example - "USING: kernel sequences grouping prettyprint ;" - "{ 1 2 3 4 } 3 third ." + "USING: arrays kernel sequences grouping prettyprint ;" + "{ 1 2 3 4 } 3 third >array ." "{ 3 4 1 }" } } ;