summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2010-06-14 12:18:13 +0000
committerIulian Dragos <jaguarul@gmail.com>2010-06-14 12:18:13 +0000
commita8d02cd6b66cae01381bde733d9f24013bbb7e48 (patch)
tree0184d30ef33d253c43d433155cebe9bf5071a425
parentf492b003234d3c6e03fb0c1e71ac1eb5269f66a4 (diff)
downloadscala-a8d02cd6b66cae01381bde733d9f24013bbb7e48.tar.gz
scala-a8d02cd6b66cae01381bde733d9f24013bbb7e48.tar.bz2
scala-a8d02cd6b66cae01381bde733d9f24013bbb7e48.zip
Closes #3420, typo in scaladoc for BigInt.
-rw-r--r--src/library/scala/math/BigInt.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library/scala/math/BigInt.scala b/src/library/scala/math/BigInt.scala
index 79b377bc6c..a21057c400 100644
--- a/src/library/scala/math/BigInt.scala
+++ b/src/library/scala/math/BigInt.scala
@@ -339,9 +339,9 @@ class BigInt(val bigInteger: BigInteger) extends ScalaNumber with ScalaNumericCo
def floatValue = this.bigInteger.floatValue
/** Converts this BigInt to a <tt>double</tt>.
- * if this BigInt has too great a magnitude to represent as a float,
- * it will be converted to <code>Float.NEGATIVE_INFINITY</code> or
- * <code>Float.POSITIVE_INFINITY</code> as appropriate.
+ * if this BigInt has too great a magnitude to represent as a double,
+ * it will be converted to <code>Double.NEGATIVE_INFINITY</code> or
+ * <code>Double.POSITIVE_INFINITY</code> as appropriate.
*/
def doubleValue = this.bigInteger.doubleValue