]> gitweb.factorcode.org Git - factor.git/blobdiff - core/vectors/vectors.factor
Fix comments to be ! not #!.
[factor.git] / core / vectors / vectors.factor
index 27cd1cf734537c0c756f2fcb8a8b34b6e6b7a102..403cc6338421981978778654ea3702d168104df9 100644 (file)
@@ -24,10 +24,10 @@ M: vector equal?
     over vector? [ sequence= ] [ 2drop f ] if ;
 
 M: array like
-    #! If we have an array, we're done.
-    #! If we have a vector, and it's at full capacity, we're done.
-    #! Otherwise, call resize-array, which is a relatively
-    #! fast primitive.
+    ! If we have an array, we're done.
+    ! If we have a vector, and it's at full capacity, we're done.
+    ! Otherwise, call resize-array, which is a relatively
+    ! fast primitive.
     drop dup array? [
         dup vector? [
             [ length ] [ underlying>> ] bi