Skip to content

Commit ded863b

Browse files
committed
Fix spelling allready -> already
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@610473 13f79535-47bb-0310-9956-ffa450edef68
1 parent 03d3094 commit ded863b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/io/FileUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1736,7 +1736,7 @@ public static void moveDirectory(File srcDir, File destDir) throws IOException {
17361736
throw new IOException("Source '" + srcDir + "' is not a directory");
17371737
}
17381738
if (destDir.exists()) {
1739-
throw new IOException("Destination '" + destDir + "' allready exists");
1739+
throw new IOException("Destination '" + destDir + "' already exists");
17401740
}
17411741
boolean rename = srcDir.renameTo(destDir);
17421742
if (!rename) {
@@ -1808,7 +1808,7 @@ public static void moveFile(File srcFile, File destFile) throws IOException {
18081808
throw new IOException("Source '" + srcFile + "' is a directory");
18091809
}
18101810
if (destFile.exists()) {
1811-
throw new IOException("Destination '" + destFile + "' allready exists");
1811+
throw new IOException("Destination '" + destFile + "' already exists");
18121812
}
18131813
if (destFile.isDirectory()) {
18141814
throw new IOException("Destination '" + destFile + "' is a directory");

0 commit comments

Comments
 (0)