From: seoz Date: Sun, 25 Mar 2012 08:51:02 +0000 (+0000) Subject: eina eina_list.h: Fixed typo in the documentation. X-Git-Tag: 2.0_alpha~20^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8aecc6711996d8e4e77ea914b053b9ee042042f8;p=framework%2Fuifw%2Feina.git eina eina_list.h: Fixed typo in the documentation. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@69605 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/include/eina_list.h b/src/include/eina_list.h index c8ef06d..5765557 100644 --- a/src/include/eina_list.h +++ b/src/include/eina_list.h @@ -930,9 +930,9 @@ EAPI Eina_List *eina_list_sort(Eina_List *list, unsigned int limit, E * @param right Tail list to merge. * @return A new merged list. * - * This function puts right at the end of left and return the head. + * This function puts right at the end of left and returns the head. * - * Both left and right does not exist anymore after the merge. + * Both left and right do not exist anymore after the merge. * * @note merge cost is O(n), being @b n the size of the smallest * list. This is due the need to fix accounting of that segment, @@ -956,7 +956,7 @@ EAPI Eina_List *eina_list_merge(Eina_List *left, Eina_List *right) EI * smallest one to be head of the returned list. It will continue this process * for all entry of both list. * - * Both left and right does not exist anymore after the merge. + * Both left and right do not exist anymore after the merge. * If @p func is NULL, it will return NULL. * * Example: