[Swift-commit] r2439 - trunk/src/org/griphyn/vdl/engine
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Mon Jan 12 12:04:39 CST 2009
Author: benc
Date: 2009-01-12 12:04:36 -0600 (Mon, 12 Jan 2009)
New Revision: 2439
Modified:
trunk/src/org/griphyn/vdl/engine/Karajan.java
Log:
correct typo in exception message
Modified: trunk/src/org/griphyn/vdl/engine/Karajan.java
===================================================================
--- trunk/src/org/griphyn/vdl/engine/Karajan.java 2009-01-12 07:37:32 UTC (rev 2438)
+++ trunk/src/org/griphyn/vdl/engine/Karajan.java 2009-01-12 18:04:36 UTC (rev 2439)
@@ -649,7 +649,7 @@
String inType = datatype(inST);
if (!inType.substring(inType.length() - 2).equals("[]"))
- throw new CompilationException("You can iterate through array atructure only");
+ throw new CompilationException("You can iterate through an array structure only");
String varType = inType.substring(0, inType.length() - 2);
innerScope.addVariable(foreach.getVar(), varType);
foreachST.setAttribute("indexVar", foreach.getIndexVar());
More information about the Swift-commit
mailing list