eina: Fixed doxygen.
authorseoz <seoz>
Sat, 11 Jun 2011 09:16:45 +0000 (09:16 +0000)
committerseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 11 Jun 2011 09:16:45 +0000 (09:16 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@60228 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/include/eina_list.h

index 8df3dfc..dc527fa 100644 (file)
@@ -48,7 +48,7 @@
  * @image rtf eina_list_example_01_a.png
  * @image latex eina_list_example_01_a.eps
  * @until roslin
- * There a couple of interesting things happening here, first is that we are
+ * There are a couple of interesting things happening here, first is that we are
  * passing a NULL pointer to the first @ref eina_list_append() call, when this
  * is done a list is created. The other @b very important detail to notice is
  * that the return value is attributed to the @a list variable, this needs to
  * be added with @ref eina_list_sorted_insert():
  * @until sorted_insert
  * 
- * A noteworthy use case is adding a element to a list only if doesn't exist
- * already, this can accomplished by searching for the element that is closests
+ * A noteworthy use case is adding an element to a list only if it doesn't exist
+ * already, this can accomplished by searching for the element that is closest
  * to what is being added, and if that doesn't match add:
  * @until append
  * @note @ref eina_list_search_sorted_near_list() will tell you not only the
  * Removing elements from a list can be done with ease:
  * @until sagitarius
  * 
- * To replace a element in the list it is not nescessary to remove it and then
+ * To replace an element in the list it is not nescessary to remove it and then
  * add with the new value, it is possible to just change the value of a node:
  * @until aquarius
  * 
@@ -798,7 +798,7 @@ EAPI Eina_List            *eina_list_reverse_clone(const Eina_List *list) EINA_W
 
 
 /**
- * @brief Clone (copy) all the elements in the list in exact order.
+ * @brief Clone (copy) all the elements in the list in exactly same order.
  *
  * @param list The list to clone.
  * @return The new list that has been cloned.