diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/config-manager.cpp | 2 | ||||
-rw-r--r-- | common/timer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp index 4ecc0e467c..3f02798f46 100644 --- a/common/config-manager.cpp +++ b/common/config-manager.cpp @@ -245,7 +245,7 @@ void ConfigManager::removeKey(const String &key, const String &dom) { else if (_globalDomains.contains(dom)) _globalDomains[dom].remove(key); else - error("Removing key '%s' from non-existant domain '%s'", key.c_str(), dom.c_str()); + error("Removing key '%s' from non-existent domain '%s'", key.c_str(), dom.c_str()); } diff --git a/common/timer.h b/common/timer.h index 91786aca10..503bc9cbe2 100644 --- a/common/timer.h +++ b/common/timer.h @@ -54,7 +54,7 @@ public: /** * Install a new timer callback. It will from now be called every interval microseconds. - * The timer may be invoked from a seperate thread. Hence any timer code should be + * The timer may be invoked from a separate thread. Hence any timer code should be * written following the same safety guidelines as any other threaded code. * * @note Although the interval is specified in microseconds, the actual timer resolution |