From a0bcf57bef6b681debf7ba477395606f9293a3ca Mon Sep 17 00:00:00 2001 From: Bowon Ryu Date: Tue, 17 Oct 2017 10:54:15 -0700 Subject: [PATCH] eina: fix doxygen typo for eina_thread. Summary: fix typo. Test Plan: API Doxygen Revision Reviewers: cedric, jpeg, myoungwoon Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D5332 Signed-off-by: Cedric Bail --- src/lib/eina/eina_thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_thread.h b/src/lib/eina/eina_thread.h index f65fb2a270..7f31d4a3e4 100644 --- a/src/lib/eina/eina_thread.h +++ b/src/lib/eina/eina_thread.h @@ -87,8 +87,8 @@ EAPI Eina_Bool eina_thread_equal(Eina_Thread t1, Eina_Thread t2) EINA_WARN_UNUSE /** * @brief Creates a new thread, setting its priority and affinity. * - * @param t[out] where to return the thread identifier. Must @b not be @c NULL. - * @param prio thread priority to use, usually #EINA_THREAD_BACKGROUND + * @param[out] t where to return the thread identifier. Must @b not be @c NULL. + * @param prio thread priority to use, usually EINA_THREAD_BACKGROUND * @param affinity thread affinity to use. To not set affinity use @c -1. * @param func function to run in the thread. Must @b not be @c NULL. * @param data context data to provide to @a func as first argument.