Fix typos.

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>

SVN revision: 66814
This commit is contained in:
Sanjeev BA 2012-01-04 00:11:55 +00:00
parent c69d424fe5
commit fcffec2a23
1 changed files with 4 additions and 4 deletions

View File

@ -110,8 +110,8 @@ _ecore_poller_cb_timer(void *data __UNUSED__)
at_tick++;
last_tick = ecore_time_get();
/* we have 16 counters - each incriments every time the poller counter
* "ticks". it incriments by the minimum interval (which can be 1, 2, 4,
/* we have 16 counters - each increments every time the poller counter
* "ticks". it increments by the minimum interval (which can be 1, 2, 4,
* 7, 16 etc. up to 32768) */
for (i = 0; i < 15; i++)
{
@ -180,7 +180,7 @@ _ecore_poller_cb_timer(void *data __UNUSED__)
at_tick--;
/* if the timer was deleted then there is no point returning 1 - ambiguous
* if we do as it im plies "keep running me" but we have been deleted
* if we do as it implies keep running me" but we have been deleted
* anyway */
if (!timer) return ECORE_CALLBACK_CANCEL;
@ -216,7 +216,7 @@ ecore_poller_poll_interval_set(Ecore_Poller_Type type __UNUSED__,
* @param type The ticker type to query
* @return The time in seconds between ticks of the ticker clock
*
* This will get the time between ticks of the specifider ticker clock.
* This will get the time between ticks of the specified ticker clock.
*/
EAPI double
ecore_poller_poll_interval_get(Ecore_Poller_Type type __UNUSED__)