summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-10-03 21:36:01 +0000
committermihaylov <mihaylov@epfl.ch>2005-10-03 21:36:01 +0000
commitce5f59f920161c6d1e4148f58d813e667ffd9862 (patch)
treedbfc446dc5cca924d7bd137bb44c461f3c31f324
parent7deca20d7c33fba3b66a69a1dd04e2a9f2742a05 (diff)
downloadscala-ce5f59f920161c6d1e4148f58d813e667ffd9862.tar.gz
scala-ce5f59f920161c6d1e4148f58d813e667ffd9862.tar.bz2
scala-ce5f59f920161c6d1e4148f58d813e667ffd9862.zip
*** empty log message ***
-rw-r--r--sources/scala/runtime/compat/Math.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/runtime/compat/Math.scala b/sources/scala/runtime/compat/Math.scala
index 22243f0e00..8b563416e2 100644
--- a/sources/scala/runtime/compat/Math.scala
+++ b/sources/scala/runtime/compat/Math.scala
@@ -17,5 +17,5 @@ object Math {
def log(x: Double): Double = Math.log(x);
def max(x: Int, y: Int): Int = Math.max(x, y);
- def sqrt(x: Double): Double = Math.sqrt(s);
+ def sqrt(x: Double): Double = Math.sqrt(x);
}