[Swift-commit] r3452 - branches/tests-01/tests

noreply at svn.ci.uchicago.edu noreply at svn.ci.uchicago.edu
Wed Jul 21 16:23:03 CDT 2010


Author: wozniak
Date: 2010-07-21 16:23:03 -0500 (Wed, 21 Jul 2010)
New Revision: 3452

Modified:
   branches/tests-01/tests/array_iteration.swift
Log:
Small fix to test


Modified: branches/tests-01/tests/array_iteration.swift
===================================================================
--- branches/tests-01/tests/array_iteration.swift	2010-07-21 21:22:39 UTC (rev 3451)
+++ branches/tests-01/tests/array_iteration.swift	2010-07-21 21:23:03 UTC (rev 3452)
@@ -1,13 +1,11 @@
 type file {}
 
-(file f) echo (string s) {
-    app {
+app (file f) echo (string s) {
         echo s stdout=@filename(f);
-    }
 }
 
 (file fa[]) echo_batch (string sa[]) {
-    foreach string s, i in sa {
+    foreach s, i in sa {
         fa[i] = echo(s);
     }
 }




More information about the Swift-commit mailing list