summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-08-07 13:29:43 +0000
committerpaltherr <paltherr@epfl.ch>2003-08-07 13:29:43 +0000
commite73d2649b1ad6b4e0ac05c9cb7d9930da5801518 (patch)
tree2113502638d068160e3465159f2834d1d5d30c20 /sources
parent4019f766763db31bb7733db2b0fe769fb4548c99 (diff)
downloadscala-e73d2649b1ad6b4e0ac05c9cb7d9930da5801518.tar.gz
scala-e73d2649b1ad6b4e0ac05c9cb7d9930da5801518.tar.bz2
scala-e73d2649b1ad6b4e0ac05c9cb7d9930da5801518.zip
- changed module into object
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/concurrent/ops.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/concurrent/ops.scala b/sources/scala/concurrent/ops.scala
index f0bc73f953..8165b67159 100644
--- a/sources/scala/concurrent/ops.scala
+++ b/sources/scala/concurrent/ops.scala
@@ -1,6 +1,6 @@
package scala.concurrent;
-module ops {
+object ops {
def spawn(def p: Unit) = {
val t = new Thread { override def run() = p; }