]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/monads/monads-tests.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / extra / monads / monads-tests.factor
index 0f1eb8edda53fcf203689f1d7640ecf212b4e903..5504633bb636fdac67bc5007f3c930467c142776 100644 (file)
@@ -78,7 +78,7 @@ IN: monads.tests
 ] unit-test
 
 LAZY: nats-from ( n -- list )
-    dup 1+ nats-from cons ;
+    dup 1 + nats-from cons ;
 
 : nats ( -- list ) 0 nats-from ;