summaryrefslogtreecommitdiff
path: root/ACE/ace/Map_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Map_T.h')
-rw-r--r--ACE/ace/Map_T.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/ACE/ace/Map_T.h b/ACE/ace/Map_T.h
index e8b97bf09a0..bcb352d3259 100644
--- a/ACE/ace/Map_T.h
+++ b/ACE/ace/Map_T.h
@@ -851,11 +851,11 @@ public:
/// Close down and release dynamically allocated resources.
virtual ~ACE_Active_Map_Manager_Adapter (void);
- /// Initialize a <Map> with size @a length.
+ /// Initialize a Map with size @a length.
virtual int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *alloc = 0);
- /// Close down a <Map> and release dynamically allocated resources.
+ /// Close down a Map and release dynamically allocated resources.
virtual int close (void);
/**
@@ -870,11 +870,10 @@ public:
/**
* Add @a key / @a value pair to the map. @a key is an "inout" parameter
* and maybe modified/extended by the map to add additional
- * information. To recover original key, call the <recover_key>
+ * information. To recover original key, call the recover_key()
* method.
*/
- virtual int bind_modify_key (const VALUE &value,
- KEY &key);
+ virtual int bind_modify_key (const VALUE &value, KEY &key);
/**
* Produce a key and return it through @a key which is an "out"
@@ -910,7 +909,7 @@ public:
virtual int bind_create_key (const VALUE &value);
/// Recovers the original key potentially modified by the map during
- /// <bind_modify_key>.
+ /// bind_modify_key().
virtual int recover_key (const KEY &modified_key,
KEY &original_key);