summaryrefslogtreecommitdiff
path: root/src/actors
diff options
context:
space:
mode:
Diffstat (limited to 'src/actors')
-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 {