summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/Dynamic_Service.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Dynamic_Service.h b/ace/Dynamic_Service.h
index 85d1a2f7730..e7cddce6ad8 100644
--- a/ace/Dynamic_Service.h
+++ b/ace/Dynamic_Service.h
@@ -39,10 +39,11 @@ template <class TYPE>
class ACE_Dynamic_Service : public ACE_Dynamic_Service_Base
{
public:
- /// Return instance using <name> to search the Service_Repository.
- static TYPE*instance (const ACE_TCHAR *name);
+ /// Return instance using @a name to search the Service_Repository.
+ static TYPE* instance (const ACE_TCHAR *name);
#if defined (ACE_USES_WCHAR)
+ /// Return instance using @a name to search the Service_Repository.
static TYPE* instance (const ACE_ANTI_TCHAR *name);
#endif // ACE_USES_WCHAR
};