]> gitweb.factorcode.org Git - factor.git/commitdiff
grouping: Fix some spacing.
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 7 Jul 2018 16:14:57 +0000 (11:14 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 7 Jul 2018 16:14:57 +0000 (11:14 -0500)
basis/grouping/grouping-docs.factor

index 83b6dcbdb9743a7c4c3e4fc6feb848633140ad5b..0126935806fb7b7a5c5d8cee61146a2e9d6a10e7 100644 (file)
@@ -123,7 +123,9 @@ HELP: circular-clump
 { $description "Splits the sequence into overlapping clumps of " { $snippet "n" } " elements, wrapping around the end of the sequence, and collects the clumps into a new array." }
 { $notes "For an empty sequence, the result is an empty sequence." }
 { $examples
-    { $example "USING: grouping prettyprint ;" "{ 3 1 3 3 7 } 2 circular-clump ." "{ { 3 1 } { 1 3 } { 3 3 } { 3 7 } { 7 3 } }" }
+    { $example "USING: grouping prettyprint ;"
+    "{ 3 1 3 3 7 } 2 circular-clump ."
+    "{ { 3 1 } { 1 3 } { 3 3 } { 3 7 } { 7 3 } }" }
 } ;
 
 HELP: <clumps>