Ecore_Legacy.h: fixed typo while reading it.
authorDaniel Juyung Seo <seojuyung2@gmail.com>
Wed, 23 Oct 2013 13:23:22 +0000 (22:23 +0900)
committerDaniel Juyung Seo <seojuyung2@gmail.com>
Wed, 23 Oct 2013 13:23:22 +0000 (22:23 +0900)
src/lib/ecore/Ecore_Legacy.h

index 5a70f21..0bc0009 100644 (file)
@@ -81,7 +81,7 @@ EAPI void *ecore_poller_del(Ecore_Poller *poller);
  * @param data The data to pass to the function
  * @return A handle to the new animator
  *
- * This function adds a animator and returns its handle on success and @c NULL
+ * This function adds an animator and returns its handle on success and @c NULL
  * on failure. The function @p func will be called every N seconds where N is
  * the @p frametime interval set by ecore_animator_frametime_set(). The
  * function will be passed the @p data pointer as its parameter.
@@ -98,7 +98,7 @@ EAPI void *ecore_poller_del(Ecore_Poller *poller);
  */
 EAPI Ecore_Animator *ecore_animator_add(Ecore_Task_Cb func, const void *data);
 /**
- * @brief Add a animator that runs for a limited time
+ * @brief Add an animator that runs for a limited time
  *
  * @param runtime The time to run in seconds
  * @param func The function to call when it ticks off