]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/splines/splines.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / math / splines / splines.factor
index db8e87ae61c9bb1d64b349942f8f2cc65486461a..1352b34322819b58cea5a825aaa742a38a378e06 100644 (file)
@@ -55,7 +55,7 @@ PRIVATE>
     acc ;
 
 :: <cubic-hermite-curve> ( p0 m0 p1 m1 -- polynomials )
-    p0 length iota [
+    p0 length <iota> [
         {
             [ p0 nth ] [ m0 nth ]
             [ p1 nth ] [ m1 nth ]