hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=0d1d62a6ab35ab22bd873dafffbf5b1469e4572e
commit 0d1d62a6ab35ab22bd873dafffbf5b1469e4572e Author: ChunEon Park <chuneon.p...@samsung.com> Date: Wed Apr 22 23:11:24 2015 +0900 eina thread_queue: fix typo in doc. --- src/lib/eina/eina_thread_queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_thread_queue.h b/src/lib/eina/eina_thread_queue.h index b23ca19..dc01917 100644 --- a/src/lib/eina/eina_thread_queue.h +++ b/src/lib/eina/eina_thread_queue.h @@ -17,7 +17,7 @@ * * This is a uni-directional zero-copy thread message queue specifically * designed with the idea of sending large volumes of messages with no - * copies from one thread to another (or from/to the mainloop). The ides + * copies from one thread to another (or from/to the mainloop). The idea * is that a thread queue is created and then one or more threads send * messages in one end and fetch messages on the other end. If you set a * parent message queue to 1 or more queues, then this parent will wake up @@ -92,7 +92,7 @@ eina_thread_queue_free(Eina_Thread_Queue *thq) EINA_ARG_NONNULL(1); /** * @brief Allocate a message to send down a thread queue * - * @param thq The thred queue to allocate the message on + * @param thq The thread queue to allocate the message on * @param size The size, in bytes, of the message, including standard header * @param allocref A pointer to store a general reference handle for the message * @return A pointer to the message data to fill in --