summaryrefslogtreecommitdiff
path: root/ACE/ace/Connector.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-07-12 08:20:09 +0000
commitaa30c8711cfe2c1837eedfcd7ae1b699cbe8969a (patch)
tree97c9ccc26374d117cbd4ee5f0274f7dcfac396c3 /ACE/ace/Connector.h
parente8a07ecf4d01d49b6a87464b16e213777267f82f (diff)
downloadATCD-aa30c8711cfe2c1837eedfcd7ae1b699cbe8969a.tar.gz
Mon Jul 12 08:19:58 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Connector.h: * ace/Malloc_Base.h: * ace/SString.h: * ace/Stream.h: * ace/Task.h: Fixed set of doxygen warnings
Diffstat (limited to 'ACE/ace/Connector.h')
-rw-r--r--ACE/ace/Connector.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Connector.h b/ACE/ace/Connector.h
index 5d77ae430e4..6e7a274c5a4 100644
--- a/ACE/ace/Connector.h
+++ b/ACE/ace/Connector.h
@@ -424,7 +424,7 @@ public:
SUPER;
/**
- * Initialize a connector. @a flags indicates how <SVC_HANDLER>'s
+ * Initialize a connector. @a flags indicates how SVC_HANDLER's
* should be initialized prior to being activated. Right now, the
* only flag that is processed is ACE_NONBLOCK, which enabled
* non-blocking I/O on the SVC_HANDLER when it is opened.
@@ -535,21 +535,21 @@ protected:
/// Creation strategy for an Connector.
CREATION_STRATEGY *creation_strategy_;
- /// true if Connector created the creation strategy and thus should
+ /// True if Connector created the creation strategy and thus should
/// delete it, else false.
bool delete_creation_strategy_;
/// Connect strategy for a Connector.
CONNECT_STRATEGY *connect_strategy_;
- /// true if Connector created the connect strategy and thus should
+ /// True if Connector created the connect strategy and thus should
/// delete it, else false.
bool delete_connect_strategy_;
- /// Concurrency strategy for an <Connector>.
+ /// Concurrency strategy for a Connector.
CONCURRENCY_STRATEGY *concurrency_strategy_;
- /// true if Connector created the concurrency strategy and thus should
+ /// True if Connector created the concurrency strategy and thus should
/// delete it, else false.
bool delete_concurrency_strategy_;
};