]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/circular/circular.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / circular / circular.factor
index 9995567ec899c93f047e0f07f97343cf34d6e737..b3be4651cd627799269edbefa72ac168f97718ba 100644 (file)
@@ -51,7 +51,7 @@ PRIVATE>
 
 : push-growing-circular ( elt circular -- )
     dup full? [ push-circular ]
-    [ [ 1+ ] change-length set-last ] if ;
+    [ [ 1 + ] change-length set-last ] if ;
 
 : <growing-circular> ( capacity -- growing-circular )
     { } new-sequence 0 0 growing-circular boa ;