Ecore_Thread: Fix yet another doxy typo.

SVN revision: 57326
This commit is contained in:
Christopher Michael 2011-02-25 18:42:44 +00:00
parent 4ba275a120
commit c0096e92ad
1 changed files with 1 additions and 1 deletions

View File

@ -1032,7 +1032,7 @@ ecore_thread_check(Ecore_Thread *thread)
* that will do the heavy work in another thread (so you should not use the
* EFL in it except Eina and Eet if you are careful). The second one, func_notify,
* will receive the data send from the thread function (func_heavy) by ecore_thread_notify
* in the main loop (and so, can use all the EFL). Tje third, func_end,
* in the main loop (and so, can use all the EFL). The third, func_end,
* that will be called in Ecore main loop when func_heavy is done. So you
* can use all the EFL inside this function. The last one, func_cancel, will
* be called in the main loop also, if the thread is cancelled or could not run at all.