summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-06-08 13:11:50 +0000
committermichelou <michelou@epfl.ch>2007-06-08 13:11:50 +0000
commit11c26aa2289baff870a063f7e2359f424f3c881d (patch)
treeedbca3a164be2e82c1e11f6d2d0bb1cfae484067 /src
parentd7b39e3597b745aa85db5abe67702f9ddc7b7ccf (diff)
downloadscala-11c26aa2289baff870a063f7e2359f424f3c881d.tar.gz
scala-11c26aa2289baff870a063f7e2359f424f3c881d.tar.bz2
scala-11c26aa2289baff870a063f7e2359f424f3c881d.zip
fixed typo in scaladoc comments
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/Math.scala46
1 files changed, 23 insertions, 23 deletions
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 <a href="Byte.html" target="_self">scala.Byte</a>. */
val MIN_BYTE = java.lang.Byte.MIN_VALUE
- /** The greatest possible value for scala.Byte. */
+ /** The greatest possible value for <a href="Byte.html" target="_self">scala.Byte</a>. */
val MAX_BYTE = java.lang.Byte.MAX_VALUE
- /** The smalles possible value for scala.Short. */
+ /** The smallest possible value for <a href="Short.html" target="_self">scala.Short</a>. */
val MIN_SHORT = java.lang.Short.MIN_VALUE
- /** The greatest possible value for scala.Short. */
+ /** The greatest possible value for <a href="Short.html" target="_self">scala.Short</a>. */
val MAX_SHORT = java.lang.Short.MAX_VALUE
- /** The smalles possible value for scala.Char. */
+ /** The smallest possible value for <a href="Char.html" target="_self">scala.Char</a>. */
val MIN_CHAR = java.lang.Character.MIN_VALUE
- /** The greatest possible value for scala.Char. */
+ /** The greatest possible value for <a href="Char.html" target="_self">scala.Char</a>. */
val MAX_CHAR = java.lang.Character.MAX_VALUE
- /** The smalles possible value for scala.Int. */
+ /** The smallest possible value for <a href="Int.html" target="_self">scala.Int</a>. */
val MIN_INT = java.lang.Integer.MIN_VALUE
- /** The greatest possible value for scala.Int. */
+ /** The greatest possible value for <a href="Int.html" target="_self">scala.Int</a>. */
val MAX_INT = java.lang.Integer.MAX_VALUE
- /** The smalles possible value for scala.Long. */
+ /** The smallest possible value for <a href="Long.html" target="_self">scala.Long</a>. */
val MIN_LONG = java.lang.Long.MIN_VALUE
- /** The greatest possible value for scala.Long. */
+ /** The greatest possible value for <a href="Long.html" target="_self">scala.Long</a>. */
val MAX_LONG = java.lang.Long.MAX_VALUE
- /** The smalles possible value for scala.Float. */
+ /** The smallest possible value for <a href="Float.html" target="_self">scala.Float</a>. */
val MIN_FLOAT = -java.lang.Float.MAX_VALUE
- /** The smalles difference between two values of scala.Float. */
+ /** The smallest difference between two values of <a href="Float.html" target="_self">scala.Float</a>. */
val EPS_FLOAT = java.lang.Float.MIN_VALUE
- /** The greatest possible value for scala.Float. */
+ /** The greatest possible value for <a href="Float.html" target="_self">scala.Float</a>. */
val MAX_FLOAT = java.lang.Float.MAX_VALUE
- /** A value of type scala.Float that represents no number. */
+ /** A value of type <a href="Float.html" target="_self">scala.Float</a> that represents no number. */
val NaN_FLOAT = java.lang.Float.NaN
- /** Negative infinity of type scala.Float*/
+ /** Negative infinity of type <a href="Float.html" target="_self">scala.Float</a>. */
val NEG_INF_FLOAT = java.lang.Float.NEGATIVE_INFINITY
- /** Positive infinity of type scala.Float*/
+ /** Positive infinity of type <a href="Float.html" target="_self">scala.Float</a>. */
val POS_INF_FLOAT = java.lang.Float.POSITIVE_INFINITY
- /** The smalles possible value for scala.Double. */
+ /** The smallest possible value for <a href="Double.html" target="_self">scala.Double</a>. */
val MIN_DOUBLE = -java.lang.Double.MAX_VALUE
- /** The smalles difference between two values of scala.Double. */
+ /** The smallest difference between two values of <a href="Double.html" target="_self">scala.Double</a>. */
val EPS_DOUBLE = java.lang.Double.MIN_VALUE
- /** The greatest possible value for scala.Double. */
+ /** The greatest possible value for <a href="Double.html" target="_self">scala.Double</a>. */
val MAX_DOUBLE = java.lang.Double.MAX_VALUE
- /** A value of type scala.Double that represents no number. */
+ /** A value of type <a href="Double.html" target="_self">scala.Double</a> that represents no number. */
val NaN_DOUBLE = java.lang.Double.NaN
- /** Negative infinity of type scala.Double*/
+ /** Negative infinity of type <a href="Double.html" target="_self">scala.Double</a>. */
val NEG_INF_DOUBLE = java.lang.Double.NEGATIVE_INFINITY
- /** Positive infinity of type scala.Double*/
+ /** Positive infinity of type <a href="Double.html" target="_self">scala.Double</a>. */
val POS_INF_DOUBLE = java.lang.Double.POSITIVE_INFINITY
/** The <code>double</code> value that is closer than any other to