summaryrefslogtreecommitdiff
path: root/src/actors/scala/actors/scheduler/ActorGC.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2011-07-15 20:20:47 +0000
committermichelou <michelou@epfl.ch>2011-07-15 20:20:47 +0000
commita4fb15861b271c41fba8382f3b55024b5fdc8155 (patch)
tree30e406cf90ed5c2fb6e87d1f72e300c1749d4452 /src/actors/scala/actors/scheduler/ActorGC.scala
parenta0476af6bce252a7e724e6e99e50a80f0021ce78 (diff)
downloadscala-a4fb15861b271c41fba8382f3b55024b5fdc8155.tar.gz
scala-a4fb15861b271c41fba8382f3b55024b5fdc8155.tar.bz2
scala-a4fb15861b271c41fba8382f3b55024b5fdc8155.zip
3rd round of clean ups (see r25285, r25292)
Diffstat (limited to 'src/actors/scala/actors/scheduler/ActorGC.scala')
-rw-r--r--src/actors/scala/actors/scheduler/ActorGC.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/actors/scala/actors/scheduler/ActorGC.scala b/src/actors/scala/actors/scheduler/ActorGC.scala
index 41ec401dbf..e1eaf86607 100644
--- a/src/actors/scala/actors/scheduler/ActorGC.scala
+++ b/src/actors/scala/actors/scheduler/ActorGC.scala
@@ -19,9 +19,9 @@ import scala.collection.mutable
* either been explicitly terminated or garbage collected.
*
* When an actor is started, it is registered with the ActorGC via the
- * <code>newActor</code> method, and when an actor is knowingly terminated
+ * `newActor` method, and when an actor is knowingly terminated
* (e.g. act method finishes, exit explicitly called, an exception is thrown),
- * the ActorGC is informed via the <code>terminated</code> method.
+ * the ActorGC is informed via the `terminated` method.
*/
trait ActorGC extends TerminationMonitor {
self: IScheduler =>
@@ -31,8 +31,8 @@ trait ActorGC extends TerminationMonitor {
/**
* This is a set of references to all the actors registered with
- * this ActorGC. It is maintained so that the WeakReferences will not be GC'd
- * before the actors to which they point.
+ * this ActorGC. It is maintained so that the WeakReferences will
+ * not be GC'd before the actors to which they point.
*/
private val refSet = new mutable.HashSet[Reference[t] forSome { type t <: TrackedReactor }]