Author: bodewig
Date: Thu Aug 21 01:10:45 2008
New Revision: 687632

URL: http://svn.apache.org/viewvc?rev=687632&view=rev
Log:
typo

Modified:
    
ant/core/trunk/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java

Modified: 
ant/core/trunk/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java?rev=687632&r1=687631&r2=687632&view=diff
==============================================================================
--- 
ant/core/trunk/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java
 (original)
+++ 
ant/core/trunk/src/main/org/apache/tools/ant/util/LayoutPreservingProperties.java
 Thu Aug 21 01:10:45 2008
@@ -38,7 +38,7 @@
  * present in the input stream from which it was loaded.</p>
  * <p>The class defers the usual work of the <a 
href="http://java.sun.com/j2se/1.3/docs/api/java/util/Properties.html";>java.util.Properties</a>
  * class to there, but it also keeps track of the contents of the
- * input stream from which it was loaded (if applicable), so that in can
+ * input stream from which it was loaded (if applicable), so that it can
  * write out the properties in as close a form as possible to the input.</p>
  * If no changes occur to property values, the output should be the same
  * as the input, except for the leading date stamp, as normal for a
@@ -259,7 +259,7 @@
         osw.write("#" + (new Date()).toString() + LS);
 
         boolean writtenSep = false;
-        for (Iterator i = logicalLines.iterator();i.hasNext();) {
+        for (Iterator i = logicalLines.iterator(); i.hasNext();) {
             LogicalLine line = (LogicalLine) i.next();
             if (line instanceof Pair) {
                 if (((Pair)line).isNew()) {


Reply via email to