summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-01-25 19:32:13 +0000
committermichelou <michelou@epfl.ch>2007-01-25 19:32:13 +0000
commit273be26c4079275790ccc1c529747a7b91509a63 (patch)
tree3fcd90b63fdfef69366db1d8c5465f4bfe775edf /src/library
parent803488f3e2e1074c373cac55d8d4c08ac4a07eb9 (diff)
downloadscala-273be26c4079275790ccc1c529747a7b91509a63.tar.gz
scala-273be26c4079275790ccc1c529747a7b91509a63.tar.bz2
scala-273be26c4079275790ccc1c529747a7b91509a63.zip
update address of Scala website
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/concurrent/pilib.scala14
-rw-r--r--src/library/scala/mobile/Code.scala4
-rw-r--r--src/library/scala/mobile/Location.scala4
3 files changed, 11 insertions, 11 deletions
diff --git a/src/library/scala/concurrent/pilib.scala b/src/library/scala/concurrent/pilib.scala
index 506b0c2d2e..b76a274219 100644
--- a/src/library/scala/concurrent/pilib.scala
+++ b/src/library/scala/concurrent/pilib.scala
@@ -1,6 +1,6 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2003-2007, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
@@ -12,11 +12,11 @@
package scala.concurrent
-/**
- * Library for using Pi-calculus concurrent primitives in Scala. As an
- * example, the definition of a two-place buffer using the <code>pilib</code>
- * library looks like:
- * <pre>
+/** <p>
+ * Library for using Pi-calculus concurrent primitives in Scala. As an
+ * example, the definition of a two-place buffer using the <code>pilib</code>
+ * library looks like:
+ * </p><pre>
* <b>def</b> Buffer[a](put: Chan[a], get: Chan[a]): unit = {
* <b>def</b> B0: unit = choice ( put * { x => B1(x) } );
* <b>def</b> B1(x: a): unit = choice ( get(x) * B0, put * { y => B2(x, y) } )
@@ -25,7 +25,7 @@ package scala.concurrent
* }
* </pre>
*
- * @see <a href="http://scala.epfl.ch/docu/related.html">PiLib: A Hosted Language for Pi-Calculus Style Concurrency</a>
+ * @see <a href="http://scala-lang.org/docu/related.html">PiLib: A Hosted Language for Pi-Calculus Style Concurrency</a>
* @author Vincent Cremet, Martin Odersky
* @version 1.0
*/
diff --git a/src/library/scala/mobile/Code.scala b/src/library/scala/mobile/Code.scala
index 33ddc8f6fa..e90d7015a3 100644
--- a/src/library/scala/mobile/Code.scala
+++ b/src/library/scala/mobile/Code.scala
@@ -1,6 +1,6 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
@@ -20,7 +20,7 @@ import java.lang.NoSuchMethodException
* a function simply by specifying its name and argument types.<p/>
*
* Example:<pre>
- * <b>val</b> url = <b>new</b> URL("http://scala.epfl.ch/classes/examples.jar");
+ * <b>val</b> url = <b>new</b> URL("http://scala-lang.org/classes/examples.jar");
* <b>val</b> obj = <b>new</b> Location(url) create "examples.sort";
* <b>val</b> ar = Array(6, 2, 8, 5, 1);
* obj[Array[Int], Unit]("println")(ar);
diff --git a/src/library/scala/mobile/Location.scala b/src/library/scala/mobile/Location.scala
index 2b8d456ea5..bcb66387e5 100644
--- a/src/library/scala/mobile/Location.scala
+++ b/src/library/scala/mobile/Location.scala
@@ -1,6 +1,6 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
@@ -25,7 +25,7 @@ import scala.collection.mutable._
* as the used class names and method signatures are the same.<p/>
*
* Example:<pre>
- * <b>val</b> url = <b>new</b> URL("http://scala.epfl.ch/classes/examples.jar");
+ * <b>val</b> url = <b>new</b> URL("http://scala-lang.org/classes/examples.jar");
* <b>val</b> obj = <b>new</b> Location(url) create "examples.sort";</pre>
*
* @see <a href="Code.html">Code</a>