summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/runtime/RichDouble.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotnet-library/scala/runtime/RichDouble.scala')
-rw-r--r--src/dotnet-library/scala/runtime/RichDouble.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dotnet-library/scala/runtime/RichDouble.scala b/src/dotnet-library/scala/runtime/RichDouble.scala
index dceabc3eb9..6f22e8c836 100644
--- a/src/dotnet-library/scala/runtime/RichDouble.scala
+++ b/src/dotnet-library/scala/runtime/RichDouble.scala
@@ -1,7 +1,7 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
@@ -18,7 +18,7 @@ final class RichDouble(x: Double) extends Proxy with Ordered[Double] {
def self: Any = x
// Ordered[Double].compare
- def compare (y: Double): Int = if (x < y) -1 else if (x > y) 1 else 0
+ def compare(y: Double): Int = if (x < y) -1 else if (x > y) 1 else 0
def min(y: Double): Double = Math.min(x, y)
def max(y: Double): Double = Math.max(x, y)