8024458: DataInput.readDouble refers to "readlong" instead of "readLong"
authorrriggs
Thu, 07 Nov 2013 20:56:44 -0500
changeset 21624 2648e47a6654
parent 21623 e88796f62a8e
child 21625 43b5aaf791aa
8024458: DataInput.readDouble refers to "readlong" instead of "readLong" Summary: fix the typo Reviewed-by: lancea, chegar, dxu
jdk/src/share/classes/java/io/DataInput.java
--- a/jdk/src/share/classes/java/io/DataInput.java	Thu Nov 07 10:03:38 2013 -0800
+++ b/jdk/src/share/classes/java/io/DataInput.java	Thu Nov 07 20:56:44 2013 -0500
@@ -444,7 +444,7 @@
      * a {@code double} value. It does this
      * by first constructing a {@code long}
      * value in exactly the manner
-     * of the {@code readlong}
+     * of the {@code readLong}
      * method, then converting this {@code long}
      * value to a {@code double} in exactly
      * the manner of the method {@code Double.longBitsToDouble}.