summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-11-02 11:40:20 +0000
committermihaylov <mihaylov@epfl.ch>2006-11-02 11:40:20 +0000
commita071695837dcdea90b1fcd51f173966cf12133f2 (patch)
tree180af9bb1443763febe5c9782f54add4e92c2b7c /src
parent12ef0e12725812e536b912f9b0b8d546f0ebfd10 (diff)
downloadscala-a071695837dcdea90b1fcd51f173966cf12133f2.tar.gz
scala-a071695837dcdea90b1fcd51f173966cf12133f2.tar.bz2
scala-a071695837dcdea90b1fcd51f173966cf12133f2.zip
Fixed a method name typo in Predef
Diffstat (limited to 'src')
-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 {