]> gitweb.factorcode.org Git - factor.git/blobdiff - core/kernel/kernel-docs.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / core / kernel / kernel-docs.factor
index f3c57776af4f71dcda51049fd75e5c322fb62d03..f37a851e039815f147919d2dfb66ca2fa5ac1a66 100644 (file)
@@ -810,7 +810,7 @@ HELP: with
 { $notes "This operation is efficient and does not copy the quotation." }
 { $examples
     { $example "USING: kernel math prettyprint sequences ;" "1 { 1 2 3 } [ / ] with map ." "{ 1 1/2 1/3 }" }
-    { $example "USING: kernel math prettyprint sequences ;" "1000 100 5 iota [ sq + + ] 2with map ." "{ 1100 1101 1104 1109 1116 }" }
+    { $example "USING: kernel math prettyprint sequences ;" "1000 100 5 <iota> [ sq + + ] 2with map ." "{ 1100 1101 1104 1109 1116 }" }
 } ;
 
 HELP: 2with