changeset 8757:04f071a95c29

8024458: DataInput.readDouble refers to "readlong" instead of "readLong" Summary: fix the typo Reviewed-by: lancea, chegar, dxu
author rriggs
date Thu, 07 Nov 2013 20:56:44 -0500
parents fb7abd509bd2
children e10a182c973a
files src/share/classes/java/io/DataInput.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/classes/java/io/DataInput.java	Thu Nov 07 10:03:38 2013 -0800
+++ b/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}.