summaryrefslogtreecommitdiff
path: root/src/lib/eina/eina_thread.h
diff options
context:
space:
mode:
authorBowon Ryu <bowon.ryu@samsung.com>2017-10-17 10:54:15 -0700
committerCedric Bail <cedric@osg.samsung.com>2017-10-17 10:54:24 -0700
commita0bcf57bef6b681debf7ba477395606f9293a3ca (patch)
treeddfde1299e40a63f66eda5ae7f7ba1b487b91ae4 /src/lib/eina/eina_thread.h
parent5a8181b3ee9ae2c8804a314b87d5de95d8856f7f (diff)
downloadefl-a0bcf57bef6b681debf7ba477395606f9293a3ca.tar.gz
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 <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/eina/eina_thread.h')
-rw-r--r--src/lib/eina/eina_thread.h4
1 files 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.