summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/Predef.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index b1ee6d05de..72632ff0f6 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -121,7 +121,7 @@ object Predef {
implicit def stringWrapper(x: String) = new runtime.RichString(x)
- implicit def exceptionWareppr(exc: Throwable) = new runtime.RichException(exc)
+ implicit def exceptionWrapper(exc: Throwable) = new runtime.RichException(exc)
implicit def int2ordered(x: int): Ordered[int] = new Ordered[int] with Proxy {