summaryrefslogtreecommitdiffstats
path: root/core/list.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-03-24 21:45:31 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-03-24 21:45:31 +0100
commitdebeee56f721178d44f71deb4e303b825d1dccd1 (patch)
tree6c88f378419a5760bbe919c48c87d1c71a6ea548 /core/list.h
parentc103f32ea3b19c3588d54dcef98e307f8b823f4c (diff)
downloadredot-engine-debeee56f721178d44f71deb4e303b825d1dccd1.tar.gz
Fix typos in source code using codespell
From https://github.com/lucasdemarchi/codespell
Diffstat (limited to 'core/list.h')
-rw-r--r--core/list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/list.h b/core/list.h
index 6924580380..b6f2df867f 100644
--- a/core/list.h
+++ b/core/list.h
@@ -179,7 +179,7 @@ private:
public:
/**
- * return an const iterator to the begining of the list.
+ * return an const iterator to the beginning of the list.
*/
_FORCE_INLINE_ const Element *front() const {
@@ -187,7 +187,7 @@ public:
};
/**
- * return an iterator to the begining of the list.
+ * return an iterator to the beginning of the list.
*/
_FORCE_INLINE_ Element *front() {
return _data ? _data->first : 0;
@@ -251,7 +251,7 @@ public:
}
/**
- * store a new element at the begining of the list
+ * store a new element at the beginning of the list
*/
Element *push_front(const T &value) {