summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}