]> gitweb.factorcode.org Git - factor.git/blobdiff - core/math/math.factor
Fix comments to be ! not #!.
[factor.git] / core / math / math.factor
index ecf3e43001606fc82569469bf1893bc746f3faa4..92d8326b5c15c2e6caabad4c77385c197506f0ae 100644 (file)
@@ -252,7 +252,7 @@ GENERIC: prev-float ( m -- n )
 : if-iterate? ( i n true false -- ) [ 2over < ] 2dip if ; inline
 
 : iterate-step ( i n quot -- i n quot )
-    #! Apply quot to i, keep i and quot, hide n.
+    ! Apply quot to i, keep i and quot, hide n.
     [ nip call ] 3keep ; inline
 
 : iterate-rot ( ? i n quot -- i n quot ? )