summaryrefslogtreecommitdiff
path: root/src/actors/scala/actors/ReplyReactor.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2009-07-07 10:18:05 +0000
committermichelou <michelou@epfl.ch>2009-07-07 10:18:05 +0000
commitdbe0e2bc384fdf7eac0312859347aa62a4778390 (patch)
tree36e9b3e88aa3c66f390306c082b827b741615116 /src/actors/scala/actors/ReplyReactor.scala
parent5754e85ed09df3722c3ca98e0832656ab8699e74 (diff)
downloadscala-dbe0e2bc384fdf7eac0312859347aa62a4778390.tar.gz
scala-dbe0e2bc384fdf7eac0312859347aa62a4778390.tar.bz2
scala-dbe0e2bc384fdf7eac0312859347aa62a4778390.zip
fixed Scala comments, added svn:keywords
Diffstat (limited to 'src/actors/scala/actors/ReplyReactor.scala')
-rw-r--r--src/actors/scala/actors/ReplyReactor.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/actors/scala/actors/ReplyReactor.scala b/src/actors/scala/actors/ReplyReactor.scala
index 7e8bc0ab37..1fb564f626 100644
--- a/src/actors/scala/actors/ReplyReactor.scala
+++ b/src/actors/scala/actors/ReplyReactor.scala
@@ -10,14 +10,14 @@
package scala.actors
-/**
- * The ReplyReactor trait extends the Reactor trait with
- * methods to reply to the sender of a message.
- * Sending a message to a ReplyReactor implicitly
- * passes a reference to the sender together with the
- * message.
+/** <p>
+ * The <code>ReplyReactor</code> trait extends the <code>Reactor</code>
+ * trait with methods to reply to the sender of a message.
+ * Sending a message to a <code>ReplyReactor</code> implicitly
+ * passes a reference to the sender together with the message.
+ * </p>
*
- * @author Philipp Haller
+ * @author Philipp Haller
*/
trait ReplyReactor extends Reactor {