From 810abd475974fb31f1da42fc0db15637251a1759 Mon Sep 17 00:00:00 2001 From: David Brodsky Date: Fri, 4 Aug 2006 16:49:12 +0200 Subject: [PATCH] Documentation fixes. --- src/core/config.h | 4 ++-- src/core/modulemanager.h | 4 ++-- src/core/threadmanager.h | 4 ++-- src/net-core/loop.h | 4 ++-- src/net-core/poll.h | 4 ++-- src/util-object/objectmanager.h | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/core/config.h b/src/core/config.h index c720c95..3543867 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -55,7 +55,7 @@ class Config */ const String &operator[](const String &key); - /** Returns pointer to the only instance of this class. + /** Returns pointer to the instance of this class. */ static Config *self() { return config; @@ -67,7 +67,7 @@ class Config */ void loadConfigFile(const String &filename); - /** Holds pointer to the only instance of this class. + /** Holds pointer to the instance of this class. */ static Config *config; diff --git a/src/core/modulemanager.h b/src/core/modulemanager.h index 4e7cf77..9f16eac 100644 --- a/src/core/modulemanager.h +++ b/src/core/modulemanager.h @@ -156,7 +156,7 @@ class ModuleManager */ void loadModule(const String &name); - /** Returns pointer to the only instance of this class. + /** Returns pointer to the instance of this class. */ static ModuleManager *self() { return moduleManager; @@ -167,7 +167,7 @@ class ModuleManager */ ModuleDependencies *deps; - /** Holds pointer to the only instance of this class. + /** Holds pointer to the instance of this class. */ static ModuleManager *moduleManager; diff --git a/src/core/threadmanager.h b/src/core/threadmanager.h index 8a998be..890177b 100644 --- a/src/core/threadmanager.h +++ b/src/core/threadmanager.h @@ -54,7 +54,7 @@ class ThreadManager */ Thread *getThreadByName(const String &name); - /** Returns pointer to the only instance of this class. + /** Returns pointer to the instance of this class. */ static ThreadManager *self() { return threadManager; @@ -99,7 +99,7 @@ class ThreadManager */ Mutex *threadIDsMutex; - /** Holds pointer to the only instance of this class. + /** Holds pointer to the instance of this class. */ static ThreadManager *threadManager; diff --git a/src/net-core/loop.h b/src/net-core/loop.h index b5d68a7..02db277 100644 --- a/src/net-core/loop.h +++ b/src/net-core/loop.h @@ -62,7 +62,7 @@ class Loop */ void run(); - /** Returns the only instance of this class. + /** Returns the instance of this class. */ static Loop *self() { return loop; @@ -82,7 +82,7 @@ class Loop */ bool e; - /** Pointer to the only instance of this class. + /** Pointer to the instance of this class. */ static Loop *loop; diff --git a/src/net-core/poll.h b/src/net-core/poll.h index 3afd706..3a11363 100644 --- a/src/net-core/poll.h +++ b/src/net-core/poll.h @@ -97,7 +97,7 @@ class Poll */ void poll(int timeout); - /** Returns pointer to the only instance of this class. + /** Returns pointer to the instance of this class. */ static Poll *self() { return pollInstance; @@ -141,7 +141,7 @@ class Poll */ size_t eventsSize; - /** Holds pointer to the only instance of this class. + /** Holds pointer to the instance of this class. */ static Poll *pollInstance; diff --git a/src/util-object/objectmanager.h b/src/util-object/objectmanager.h index d9fc70e..40eefda 100644 --- a/src/util-object/objectmanager.h +++ b/src/util-object/objectmanager.h @@ -77,7 +77,7 @@ class ObjectManager */ void removeObject(const String &name); - /** Returns pointer to the only instance of this class. + /** Returns pointer to the instance of this class. */ static ObjectManager *self() { return objectManager; @@ -94,7 +94,7 @@ class ObjectManager */ Tairon::Core::Mutex *mutex; - /** Pointer to the only instance of this class. + /** Pointer to the instance of this class. */ static ObjectManager *objectManager; -- 2.11.4.GIT