Author: ggregory
Date: Wed Jan 9 09:29:35 2008
New Revision: 610473
URL: http://svn.apache.org/viewvc?rev=610473&view=rev
Log:
Fix spelling allready -> already
Modified:
commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
Modified: commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java?rev=610473&r1=610472&r2=610473&view=diff
==============================================================================
--- commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
(original)
+++ commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java Wed
Jan 9 09:29:35 2008
@@ -1736,7 +1736,7 @@
throw new IOException("Source '" + srcDir + "' is not a
directory");
}
if (destDir.exists()) {
- throw new IOException("Destination '" + destDir + "' allready
exists");
+ throw new IOException("Destination '" + destDir + "' already
exists");
}
boolean rename = srcDir.renameTo(destDir);
if (!rename) {
@@ -1808,7 +1808,7 @@
throw new IOException("Source '" + srcFile + "' is a directory");
}
if (destFile.exists()) {
- throw new IOException("Destination '" + destFile + "' allready
exists");
+ throw new IOException("Destination '" + destFile + "' already
exists");
}
if (destFile.isDirectory()) {
throw new IOException("Destination '" + destFile + "' is a
directory");