summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2010-09-01 13:09:55 +0000
committerIulian Dragos <jaguarul@gmail.com>2010-09-01 13:09:55 +0000
commit961741d5f5895fb08801cb07f4834dcf480f185f (patch)
treefc5c3d8bbbd46f0584b94ccea678840afb7cae99 /src/library
parent58882f89e76fd1cf824dfd9c537cadf153064860 (diff)
downloadscala-961741d5f5895fb08801cb07f4834dcf480f185f.tar.gz
scala-961741d5f5895fb08801cb07f4834dcf480f185f.tar.bz2
scala-961741d5f5895fb08801cb07f4834dcf480f185f.zip
Merged revisions 22276 via svnmerge from
https://lampsvn.epfl.ch/svn-repos/scala/scala/trunk ........ r22276 | dragos | 2010-06-14 14:18:13 +0200 (Mon, 14 Jun 2010) | 1 line Closes #3420, typo in scaladoc for BigInt. No review. ........
Diffstat (limited to 'src/library')
-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