]> gitweb.factorcode.org Git - factor.git/blobdiff - core/combinators/combinators-tests.factor
factor: fix some spacing
[factor.git] / core / combinators / combinators-tests.factor
index f428666a0ddc3661acf42b4f573c48694aeb91e7..b1d6b78e68b718d47d97fd2173151417b6d6b784 100644 (file)
@@ -120,9 +120,9 @@ IN: combinators.tests
 
 : cond-test-6 ( a -- b )
     {
-       [ drop "really early" ]
-       { [ dup 2 mod 1 = ] [ drop "odd" ] }
-       { [ dup 2 mod 0 = ] [ drop "even" ] }
+        [ drop "really early" ]
+        { [ dup 2 mod 1 = ] [ drop "odd" ] }
+        { [ dup 2 mod 0 = ] [ drop "even" ] }
     } cond ;
 
 { "really early" } [ 2 cond-test-6 ] unit-test