diff options
author | Jonathan Gray | 2003-11-07 02:43:47 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-11-07 02:43:47 +0000 |
commit | b2e9b73c4c2a1ed86fffd8fd613d6db59d88e034 (patch) | |
tree | af08c7e6a92e6ba3e525ed2e3a4f6d24b14bf494 /common | |
parent | e9581dda6e4191aa95a35776a4ac356e61fa982c (diff) | |
download | scummvm-rg350-b2e9b73c4c2a1ed86fffd8fd613d6db59d88e034.tar.gz scummvm-rg350-b2e9b73c4c2a1ed86fffd8fd613d6db59d88e034.tar.bz2 scummvm-rg350-b2e9b73c4c2a1ed86fffd8fd613d6db59d88e034.zip |
spelling fixes
svn-id: r11180
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 |