summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/math/BigDecimal.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/math/BigDecimal.scala b/src/library/scala/math/BigDecimal.scala
index 90ad43fe7f..aa238914a1 100644
--- a/src/library/scala/math/BigDecimal.scala
+++ b/src/library/scala/math/BigDecimal.scala
@@ -249,7 +249,7 @@ extends ScalaNumber with ScalaNumericConversions
/** Remainder after dividing this by that.
*/
- @migration(2, 8, "As of 2.8, the prefered way to calculate division remainder is to use method `%`.")
+ @deprecated("As of 2.8, the prefered way to calculate division remainder is to use method `%`.")
def remainder (that: BigDecimal): BigDecimal = this.bigDecimal.remainder(that.bigDecimal, mc)
/** Remainder after dividing this by that.