[IO-492] Typo: In an IOUtils.java comment it says "focussed" instead of "focused".

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1722156 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 185e617..348e846 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,7 +46,10 @@
 
   <body>
     <!-- The release date is the date RC is cut -->
-    <release version="2.5" date="2015-12-26" description="New features and bug fixes.">
+    <release version="2.5" date="2015-12-DD" description="New features and bug fixes.">
+      <action issue="IO-492" dev="ggregory" type="fix" due-to="Santiago Castro">
+        Typo: In an IOUtils.java comment it says "focussed" instead of "focused".
+      </action>
       <action issue="IO-433" dev="krosenvold" type="update">
         Converted all testcases to JUnit 4
       </action>
diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java
index c7ace28..e612db9 100644
--- a/src/main/java/org/apache/commons/io/IOUtils.java
+++ b/src/main/java/org/apache/commons/io/IOUtils.java
@@ -98,7 +98,7 @@
  * @version $Id$
  */
 public class IOUtils {
-    // NOTE: This class is focussed on InputStream, OutputStream, Reader and
+    // NOTE: This class is focused on InputStream, OutputStream, Reader and
     // Writer. Each method should take at least one of these as a parameter,
     // or return one of them.