eina: fix doxygen typo for eina_thread. 00/156300/3
authorBowon Ryu <bowon.ryu@samsung.com>
Tue, 17 Oct 2017 17:54:15 +0000 (10:54 -0700)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Wed, 18 Oct 2017 05:16:55 +0000 (05:16 +0000)
Summary: fix typo.

Test Plan: API Doxygen Revision

Reviewers: cedric, jpeg, myoungwoon

Reviewed By: cedric

Differential Revision: https://phab.enlightenment.org/D5332

Change-Id: I11cb4dc5961aee665e95750e68a9ea695ac7785e
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
src/lib/eina/eina_thread.h

index 63bfe1f..52ce79e 100644 (file)
@@ -95,8 +95,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.