Skip to content

Commit 50550a2

Browse files
committed
Fixed name of IOUtils class
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@140566 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7c20dc3 commit 50550a2

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/java/org/apache/commons/io/package.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<a name="doc.Description"></a>
1212
<div align="center"> <a href="#doc.Intro">[Introduction]</a>
1313
<a href="#doc.FilenameFilters">[FilenameFilters]</a> <a
14-
href="#doc.IOUtil">[IO Utilities]</a> <a href="#doc.FileUtil">[File
14+
href="#doc.IOUtils">[IO Utilities]</a> <a href="#doc.FileUtil">[File
1515
Utilities]</a> <a href="#doc.Endian">[Endian Utilities]</a> </div>
1616
<a name="doc.Intro"></a>
1717
<h2>Introduction</h2>
@@ -31,10 +31,10 @@ <h2>FilenameFilters</h2>
3131
for example.</p>
3232

3333

34-
<a name="doc.IOUtil"></a>
35-
<h2>The <a href="IOUtil.html">org.apache.commons.io.IOUtil</a> class</h2>
34+
<a name="doc.IOUtils"></a>
35+
<h2>The <a href="IOUtils.html">org.apache.commons.io.IOUtils</a> class</h2>
3636

37-
<p> The <a href="IOUtil.html">IOUtil</a> class contains a comprehensive
37+
<p> The <a href="IOUtils.html">IOUtils</a> class contains a comprehensive
3838
set of static methods for copying from: </p>
3939
<ul>
4040
<li><code>String</code></li>
@@ -72,10 +72,10 @@ <h2>The <a href="IOUtil.html">org.apache.commons.io.IOUtil</a> class</h2>
7272
}
7373
</pre>
7474

75-
<p>With the IOUtil class, that could be done with:</p>
75+
<p>With the IOUtils class, that could be done with:</p>
7676

77-
<pre>import java.net.URL;<br>import java.io.*;<br>import org.apache.commons.io.IOUtil;<br><br>public class IOUtilCopy {<br> public static void main(String args[]) throws IOException {<br> InputStream in = new URL( "http://jakarta.apache.org" ).openStream();<br> <font
78-
color="blue">System.out.println( IOUtil.toString( in ) );</font>
77+
<pre>import java.net.URL;<br>import java.io.*;<br>import org.apache.commons.io.IOUtils;<br><br>public class IOUtilsCopy {<br> public static void main(String args[]) throws IOException {<br> InputStream in = new URL( "http://jakarta.apache.org" ).openStream();<br> <font
78+
color="blue">System.out.println( IOUtils.toString( in ) );</font>
7979
in.close();
8080
}
8181
}
@@ -85,7 +85,7 @@ <h2>The <a href="IOUtil.html">org.apache.commons.io.IOUtil</a> class</h2>
8585
class can save a great deal of time.</p>
8686

8787
<p>For utility code such as this, flexibility and speed are of primary importance.
88-
In IOUtil, each kind of copy method has a variant which allows the buffer
88+
In IOUtils, each kind of copy method has a variant which allows the buffer
8989
size to be set. For methods that convert bytes to chars, the encoding
9090
method may also be set.</p>
9191
<a name="doc.FileUtil"></a>

0 commit comments

Comments
 (0)