diff options
Diffstat (limited to 'core/list.h')
-rw-r--r-- | core/list.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/list.h b/core/list.h index 6924580380..4390cb65fc 100644 --- a/core/list.h +++ b/core/list.h @@ -6,6 +6,7 @@ /* http://www.godotengine.org */ /*************************************************************************/ /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ /* a copy of this software and associated documentation files (the */ @@ -179,7 +180,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 +188,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 +252,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) { |