summaryrefslogtreecommitdiff
path: root/src/library/scala/runtime/RichException.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/runtime/RichException.scala')
-rw-r--r--src/library/scala/runtime/RichException.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/runtime/RichException.scala b/src/library/scala/runtime/RichException.scala
index f01788a4e9..2863fb6d7c 100644
--- a/src/library/scala/runtime/RichException.scala
+++ b/src/library/scala/runtime/RichException.scala
@@ -11,7 +11,7 @@ package runtime
import scala.compat.Platform.EOL
-@deprecated("Use Throwable#getStackTrace", "2.11.0")
+@deprecated("use Throwable#getStackTrace", "2.11.0")
final class RichException(exc: Throwable) {
def getStackTraceString = exc.getStackTrace().mkString("", EOL, EOL)
}