8024458: DataInput.readDouble refers to "readlong" instead of "readLong"
Summary: fix the typo
Reviewed-by: lancea, chegar, dxu
--- 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}.