aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/memorypool.cpp2
-rw-r--r--common/util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/memorypool.cpp b/common/memorypool.cpp
index b5daeee496..f3dfb7975f 100644
--- a/common/memorypool.cpp
+++ b/common/memorypool.cpp
@@ -56,7 +56,7 @@ MemoryPool::MemoryPool(size_t chunkSize) {
MemoryPool::~MemoryPool() {
for (size_t i = 0; i<_pages.size(); ++i)
- ::free(_pages[i]);
+ ::free(_pages[i]);
}
void* MemoryPool::malloc() {
diff --git a/common/util.h b/common/util.h
index dd205f159c..1f680d28c1 100644
--- a/common/util.h
+++ b/common/util.h
@@ -281,7 +281,7 @@ struct EngineDebugLevel {
* @param level the level flag (should be OR-able i.e. first one should be 1 than 2,4,...)
* @param option the option name which is used in the debugger/on the command line to enable
* this special debug level, the option will be compared case !insentiv! later
- * @param descripton the description which shows up in the debugger
+ * @param description the description which shows up in the debugger
* @return true on success false on failure
*/
bool addSpecialDebugLevel(uint32 level, const String &option, const String &description);