From 11c26aa2289baff870a063f7e2359f424f3c881d Mon Sep 17 00:00:00 2001 From: michelou Date: Fri, 8 Jun 2007 13:11:50 +0000 Subject: fixed typo in scaladoc comments --- src/library/scala/Math.scala | 46 ++++++++++++++++++++++---------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'src') diff --git a/src/library/scala/Math.scala b/src/library/scala/Math.scala index 3699b48811..c5dc0ede1f 100644 --- a/src/library/scala/Math.scala +++ b/src/library/scala/Math.scala @@ -1,7 +1,7 @@ /* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL ** -** __\ \/ /__/ __ |/ /__/ __ | ** +** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ @@ -17,55 +17,55 @@ package scala */ object Math { - /** The smalles possible value for scala.Byte. */ + /** The smallest possible value for scala.Byte. */ val MIN_BYTE = java.lang.Byte.MIN_VALUE - /** The greatest possible value for scala.Byte. */ + /** The greatest possible value for scala.Byte. */ val MAX_BYTE = java.lang.Byte.MAX_VALUE - /** The smalles possible value for scala.Short. */ + /** The smallest possible value for scala.Short. */ val MIN_SHORT = java.lang.Short.MIN_VALUE - /** The greatest possible value for scala.Short. */ + /** The greatest possible value for scala.Short. */ val MAX_SHORT = java.lang.Short.MAX_VALUE - /** The smalles possible value for scala.Char. */ + /** The smallest possible value for scala.Char. */ val MIN_CHAR = java.lang.Character.MIN_VALUE - /** The greatest possible value for scala.Char. */ + /** The greatest possible value for scala.Char. */ val MAX_CHAR = java.lang.Character.MAX_VALUE - /** The smalles possible value for scala.Int. */ + /** The smallest possible value for scala.Int. */ val MIN_INT = java.lang.Integer.MIN_VALUE - /** The greatest possible value for scala.Int. */ + /** The greatest possible value for scala.Int. */ val MAX_INT = java.lang.Integer.MAX_VALUE - /** The smalles possible value for scala.Long. */ + /** The smallest possible value for scala.Long. */ val MIN_LONG = java.lang.Long.MIN_VALUE - /** The greatest possible value for scala.Long. */ + /** The greatest possible value for scala.Long. */ val MAX_LONG = java.lang.Long.MAX_VALUE - /** The smalles possible value for scala.Float. */ + /** The smallest possible value for scala.Float. */ val MIN_FLOAT = -java.lang.Float.MAX_VALUE - /** The smalles difference between two values of scala.Float. */ + /** The smallest difference between two values of scala.Float. */ val EPS_FLOAT = java.lang.Float.MIN_VALUE - /** The greatest possible value for scala.Float. */ + /** The greatest possible value for scala.Float. */ val MAX_FLOAT = java.lang.Float.MAX_VALUE - /** A value of type scala.Float that represents no number. */ + /** A value of type scala.Float that represents no number. */ val NaN_FLOAT = java.lang.Float.NaN - /** Negative infinity of type scala.Float*/ + /** Negative infinity of type scala.Float. */ val NEG_INF_FLOAT = java.lang.Float.NEGATIVE_INFINITY - /** Positive infinity of type scala.Float*/ + /** Positive infinity of type scala.Float. */ val POS_INF_FLOAT = java.lang.Float.POSITIVE_INFINITY - /** The smalles possible value for scala.Double. */ + /** The smallest possible value for scala.Double. */ val MIN_DOUBLE = -java.lang.Double.MAX_VALUE - /** The smalles difference between two values of scala.Double. */ + /** The smallest difference between two values of scala.Double. */ val EPS_DOUBLE = java.lang.Double.MIN_VALUE - /** The greatest possible value for scala.Double. */ + /** The greatest possible value for scala.Double. */ val MAX_DOUBLE = java.lang.Double.MAX_VALUE - /** A value of type scala.Double that represents no number. */ + /** A value of type scala.Double that represents no number. */ val NaN_DOUBLE = java.lang.Double.NaN - /** Negative infinity of type scala.Double*/ + /** Negative infinity of type scala.Double. */ val NEG_INF_DOUBLE = java.lang.Double.NEGATIVE_INFINITY - /** Positive infinity of type scala.Double*/ + /** Positive infinity of type scala.Double. */ val POS_INF_DOUBLE = java.lang.Double.POSITIVE_INFINITY /** The double value that is closer than any other to -- cgit v1.2.3