From 51e67a40e09b6fba154704e89c5ea5462c7552cb Mon Sep 17 00:00:00 2001 From: alberth Date: Sun, 30 May 2010 13:05:36 +0000 Subject: (svn r19909) -Doc: Typo fixes, small doxygen improvements. --- src/core/smallvec_type.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/core/smallvec_type.hpp') diff --git a/src/core/smallvec_type.hpp b/src/core/smallvec_type.hpp index 0a5c982cd..b7d984670 100644 --- a/src/core/smallvec_type.hpp +++ b/src/core/smallvec_type.hpp @@ -30,7 +30,7 @@ class SmallVector { protected: T *data; ///< The pointer to the first item uint items; ///< The number of items stored - uint capacity; ///< The avalible space for storing items + uint capacity; ///< The available space for storing items public: SmallVector() : data(NULL), items(0), capacity(0) { } @@ -93,7 +93,7 @@ public: } /** - * Search for the first occurence of an item. + * Search for the first occurrence of an item. * The '!=' operator of T is used for comparison. * @param item Item to search for * @return The position of the item, or End() when not present @@ -107,7 +107,7 @@ public: } /** - * Search for the first occurence of an item. + * Search for the first occurrence of an item. * The '!=' operator of T is used for comparison. * @param item Item to search for * @return The position of the item, or End() when not present @@ -121,7 +121,7 @@ public: } /** - * Search for the first occurence of an item. + * Search for the first occurrence of an item. * The '!=' operator of T is used for comparison. * @param item Item to search for * @return The position of the item, or -1 when not present @@ -250,7 +250,7 @@ public: /** * Get item "number" (const) * - * @param index the positon of the item + * @param index the position of the item * @return the item */ FORCEINLINE const T &operator[](uint index) const @@ -262,7 +262,7 @@ public: /** * Get item "number" * - * @param index the positon of the item + * @param index the position of the item * @return the item */ FORCEINLINE T &operator[](uint index) -- cgit v1.2.3-54-g00ecf