]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/bson/writer/writer.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / bson / writer / writer.factor
index 192b1c86bb977c02230a0d7d599caa21ee9c0d8d..086574018fce353892ffa3e7d022c61093a60daf 100644 (file)
@@ -35,7 +35,7 @@ TYPED: with-length ( quot -- bytes-written: integer start-index: integer )
 <PRIVATE
 
 : write-le ( x n -- )
-    iota [ nth-byte write1 ] with each ; inline
+    <iota> [ nth-byte write1 ] with each ; inline
 
 TYPED: write-int32 ( int: integer -- )
     INT32-SIZE write-le ; inline