summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas M. Gastal <jgastal@profusion.mobi>2012-07-17 21:09:55 +0000
committerJonas M. Gastal <jgastal@profusion.mobi>2012-07-17 21:09:55 +0000
commitdece2e8597c4a39acde243b802d91986b5a66f76 (patch)
tree9b285ea15354e9d4ad3a4af3d152175eb07c99a8
parent1469a0f261dced6cda2212e9d8462eefb20b40c1 (diff)
downloadeina-dece2e8597c4a39acde243b802d91986b5a66f76.tar.gz
Eina: eina_list_remove doc improvements
This patch fixes a small typo and changes the return docs case data is not found. Author: Leandro Dorileo <dorileo@profusion.mobi> SVN revision: 74026
-rw-r--r--src/include/eina_list.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/eina_list.h b/src/include/eina_list.h
index 7f54b38..b78eb64 100644
--- a/src/include/eina_list.h
+++ b/src/include/eina_list.h
@@ -570,11 +570,11 @@ EAPI Eina_List *eina_list_sorted_insert(Eina_List *list, Eina_Compare
* @return A list pointer.
*
* This function removes the first instance of @p data from
- * @p list. If the specified data is not in the given list (tihis
- * include the case where @p data is @c NULL), nothing is done. If
- * @p list is @c NULL, @c NULL is returned, otherwise a new list
- * pointer that should be used in place of the one passed to this
- * function.
+ * @p list. If the specified data is not in the given list (this
+ * includes the case where @p data is @c NULL), nothing is done and the
+ * specified @p list returned. If @p list is @c NULL, @c NULL is returned,
+ * otherwise a new list pointer that should be used in place of the one
+ * passed to this function.
*
* @warning @p list must be a pointer to the first element of the list.
*/