Author: ggregory Date: Tue Dec 29 15:40:07 2015 New Revision: 1722156 URL: http://svn.apache.org/viewvc?rev=1722156&view=rev Log: [IO-492] Typo: In an IOUtils.java comment it says "focussed" instead of "focused".
Modified: commons/proper/io/trunk/src/changes/changes.xml commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java Modified: commons/proper/io/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/changes/changes.xml?rev=1722156&r1=1722155&r2=1722156&view=diff ============================================================================== --- commons/proper/io/trunk/src/changes/changes.xml (original) +++ commons/proper/io/trunk/src/changes/changes.xml Tue Dec 29 15:40:07 2015 @@ -46,7 +46,10 @@ The <action> type attribute can be add,u <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> Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java?rev=1722156&r1=1722155&r2=1722156&view=diff ============================================================================== --- commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java (original) +++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/IOUtils.java Tue Dec 29 15:40:07 2015 @@ -98,7 +98,7 @@ import org.apache.commons.io.output.Stri * @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.