Fixing typo in docs.

SVN revision: 69872
This commit is contained in:
Jonas M. Gastal 2012-04-02 20:51:47 +00:00
parent e66849b1dc
commit 81608b2cc7
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ _timer_cb(void *data)
if (ctxt->timer)
ctxt->timer = NULL;
return ECORE_CALLBACK_CANCEL; // same as EINA_TRUE
return ECORE_CALLBACK_CANCEL; // same as EINA_FALSE
}
int main(int argc, char **argv)

View File

@ -1123,7 +1123,7 @@ EAPI void *ecore_main_win32_handler_del(Ecore_Win32_Handler *win32_handler);
* For now only 1 core poller type is supported: ECORE_POLLER_CORE, the default
* interval for ECORE_POLLER_CORE is 0.125(or 1/8th) second.
*
* The creation of a poller is extremely simple and only required one line:
* The creation of a poller is extremely simple and only requires one line:
* @code
* ecore_poller_add(ECORE_POLLER_CORE, 1, my_poller_function, NULL);
* @endcode