summaryrefslogtreecommitdiff
path: root/lout
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2010-02-27 05:29:37 +0000
committercorvid <corvid@lavabit.com>2010-02-27 05:29:37 +0000
commit362ad264a055afc6243098f05493e0d95c35957b (patch)
tree250d4b66ab2e5eafde09009d9a0adb5c13b738cd /lout
parentc078e58a08a9fcfdc65631ef3dacc5ac54b5a3c3 (diff)
spelling
Diffstat (limited to 'lout')
-rw-r--r--lout/misc.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/lout/misc.hh b/lout/misc.hh
index 23c2d7c1..393bac0c 100644
--- a/lout/misc.hh
+++ b/lout/misc.hh
@@ -79,7 +79,7 @@ private:
inline void resize ()
{
- /* This algorithm was tunned for memory&speed with this huge page:
+ /* This algorithm was tuned for memory&speed with this huge page:
* http://downloads.mysql.com/docs/refman-6.0-en.html.tar.gz
*/
if (array == NULL) {
@@ -131,7 +131,7 @@ public:
inline void increase() { setSize(this->num + 1); }
/**
- * \brief Set the size explicitely.
+ * \brief Set the size explicitly.
*
* May be necessary before calling misc::SimpleVector::set.
*/
@@ -142,7 +142,7 @@ public:
}
/**
- * \brief Set the size explicitely and initialize new values.
+ * \brief Set the size explicitly and initialize new values.
*
* May be necessary before calling misc::SimpleVector::set.
*/
@@ -164,7 +164,7 @@ public:
}
/**
- * \brief Return the one element, explicitety.
+ * \brief Return the one element, explicitly.
*
* The element is copied, so for complex elements, you should rather used
* misc::SimpleVector::getRef.