summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2013-07-08 21:19:01 -0400
committerSeth Tisue <seth@tisue.net>2013-07-08 21:19:01 -0400
commitd09a46b2a53d2749e9240cf293d2c8bfe0233327 (patch)
tree2a98bb9314511b95def2a80a04220b211e9632d3
parent54cb6af7dbcf630a4f57e98f0099d77dd3b36693 (diff)
downloadscala-d09a46b2a53d2749e9240cf293d2c8bfe0233327.tar.gz
scala-d09a46b2a53d2749e9240cf293d2c8bfe0233327.tar.bz2
scala-d09a46b2a53d2749e9240cf293d2c8bfe0233327.zip
fix typo in BigInt/BigDecimal deprecation messages
-rw-r--r--src/library/scala/math/BigDecimal.scala2
-rw-r--r--src/library/scala/math/BigInt.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/math/BigDecimal.scala b/src/library/scala/math/BigDecimal.scala
index 7c14ed3a9e..62528e15fa 100644
--- a/src/library/scala/math/BigDecimal.scala
+++ b/src/library/scala/math/BigDecimal.scala
@@ -159,7 +159,7 @@ object BigDecimal {
* @author Stephane Micheloud
* @version 1.0
*/
-@deprecatedInheritance("This class will me made final.", "2.10.0")
+@deprecatedInheritance("This class will be made final.", "2.10.0")
class BigDecimal(
val bigDecimal: BigDec,
val mc: MathContext)
diff --git a/src/library/scala/math/BigInt.scala b/src/library/scala/math/BigInt.scala
index fdba0ec716..58838f13a7 100644
--- a/src/library/scala/math/BigInt.scala
+++ b/src/library/scala/math/BigInt.scala
@@ -114,7 +114,7 @@ object BigInt {
* @author Martin Odersky
* @version 1.0, 15/07/2003
*/
-@deprecatedInheritance("This class will me made final.", "2.10.0")
+@deprecatedInheritance("This class will be made final.", "2.10.0")
class BigInt(val bigInteger: BigInteger) extends ScalaNumber with ScalaNumericConversions with Serializable {
/** Returns the hash code for this BigInt. */
override def hashCode(): Int =