From 7f23deb723f18dc50f307bebd44a721ac3932d39 Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Fri, 13 Sep 2013 16:44:38 +0900 Subject: [PATCH] eo: fix typo. --- src/lib/eo/Eo.h | 2 +- src/lib/eo/eo.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h index 4921f6d01c..e1b499791a 100644 --- a/src/lib/eo/Eo.h +++ b/src/lib/eo/Eo.h @@ -803,7 +803,7 @@ EAPI Eo *eo_parent_get(const Eo *obj); * * @see eo_parent_set() */ -EAPI Eina_Iterator *eo_childrens_iterator_new(Eo *obj_id); +EAPI Eina_Iterator *eo_children_iterator_new(Eo *obj_id); /** * @brief Set the parent of an object diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 1985a571a3..44895b6f83 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1135,7 +1135,7 @@ _eo_children_iterator_free(Eo_Children_Iterator *it) } EAPI Eina_Iterator * -eo_childrens_iterator_new(Eo *obj_id) +eo_children_iterator_new(Eo *obj_id) { Eo_Children_Iterator *it; _Eo_Class *klass;