summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/AV/Transport.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/AV/Transport.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/AV/Transport.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/AV/Transport.h b/TAO/orbsvcs/orbsvcs/AV/Transport.h
index 985d61b333c..755bd96da84 100644
--- a/TAO/orbsvcs/orbsvcs/AV/Transport.h
+++ b/TAO/orbsvcs/orbsvcs/AV/Transport.h
@@ -46,25 +46,25 @@ class TAO_AV_Transport;
class TAO_AV_Export TAO_AV_Transport_Item
{
public:
- /// creator method, the Transport name can only be set when the
+ /// Creator method, the Transport name can only be set when the
/// object is created.
TAO_AV_Transport_Item (const ACE_CString &name);
- /// return a reference to the character representation of the Transport
+ /// Return a reference to the character representation of the Transport
/// factories name.
const ACE_CString &name (void);
- /// return a pointer to the Transport factory.
+ /// Return a pointer to the Transport factory.
TAO_AV_Transport_Factory *factory (void);
- /// set the factory pointer's valus.
+ /// Set the factory pointer's valus.
void factory (TAO_AV_Transport_Factory *factory);
private:
/// Transport factory name.
ACE_CString name_;
- /// pointer to factory object.
+ /// Pointer to factory object.
TAO_AV_Transport_Factory *factory_;
};