summaryrefslogtreecommitdiff
path: root/ACE/ace/Stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Stream.h')
-rw-r--r--ACE/ace/Stream.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Stream.h b/ACE/ace/Stream.h
index 13a36b78f2b..59b440d02d0 100644
--- a/ACE/ace/Stream.h
+++ b/ACE/ace/Stream.h
@@ -132,18 +132,18 @@ public:
// = Blocking data transfer operations
/**
- * Send the message <mb> down the stream, starting at the Module
- * below the Stream head. Wait for upto <timeout> amount of
+ * Send the message @a mb down the stream, starting at the Module
+ * below the Stream head. Wait for upto @a timeout amount of
* absolute time for the operation to complete (or block forever if
- * <timeout> == 0).
+ * @a timeout == 0).
*/
virtual int put (ACE_Message_Block *mb,
ACE_Time_Value *timeout = 0);
/**
- * Read the message <mb> that is stored in the stream head.
- * Wait for upto <timeout> amount of absolute time for the operation
- * to complete (or block forever if <timeout> == 0).
+ * Read the message @a mb that is stored in the stream head.
+ * Wait for upto @a timeout amount of absolute time for the operation
+ * to complete (or block forever if @a timeout == 0).
*/
virtual int get (ACE_Message_Block *&mb,
ACE_Time_Value *timeout = 0);