@@ -26,8 +26,8 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
2626 }
2727
2828 /**
29- * Sends a message to this <code> ReactChannel</code>
30- * (asynchronous) supplying explicit reply destination.
29+ * Sends a message to this ` ReactChannel` (asynchronous) supplying
30+ * explicit reply destination.
3131 *
3232 * @param msg the message to send
3333 * @param replyTo the reply destination
@@ -37,17 +37,17 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
3737 }
3838
3939 /**
40- * Forwards <code> msg</code> to <code> this</code> keeping the
41- * last sender as sender instead of <code> self</code> .
40+ * Forwards ` msg` to `''' this'''` keeping the last sender as sender
41+ * instead of ` self` .
4242 */
4343 def forward (msg : Msg ) {
4444 receiver forward SendToReactor (this , msg)
4545 }
4646
4747 /**
48- * Receives a message from this <code> ReactChannel</code> .
49- * <p>
50- * This method never returns. Therefore, the rest of the computation
48+ * Receives a message from this ` ReactChannel` .
49+ *
50+ * This method '' never'' returns. Therefore, the rest of the computation
5151 * has to be contained in the actions of the partial function.
5252 *
5353 * @param f a partial function with message patterns and actions
@@ -61,10 +61,9 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
6161 }
6262
6363 /**
64- * Receives a message from this <code>ReactChannel</code> within
65- * a certain time span.
66- * <p>
67- * This method never returns. Therefore, the rest of the computation
64+ * Receives a message from this `ReactChannel` within a certain time span.
65+ *
66+ * This method ''never'' returns. Therefore, the rest of the computation
6867 * has to be contained in the actions of the partial function.
6968 *
7069 * @param msec the time span before timeout
@@ -81,7 +80,7 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
8180 }
8281
8382 /**
84- * Receives a message from this <code> ReactChannel</code> .
83+ * Receives a message from this ` ReactChannel` .
8584 *
8685 * @param f a partial function with message patterns and actions
8786 * @return result of processing the received value
@@ -96,8 +95,7 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
9695 }
9796
9897 /**
99- * Receives a message from this <code>ReactChannel</code> within a certain
100- * time span.
98+ * Receives a message from this `ReactChannel` within a certain time span.
10199 *
102100 * @param msec the time span before timeout
103101 * @param f a partial function with message patterns and actions
@@ -114,7 +112,7 @@ private[actors] class ReactChannel[Msg](receiver: ReplyReactor) extends InputCha
114112 }
115113
116114 /**
117- * Receives the next message from this <code> ReactChannel</code> .
115+ * Receives the next message from this ` ReactChannel` .
118116 */
119117 def ? : Msg = receive {
120118 case x => x
0 commit comments