From: ChunEon Park Date: Wed, 22 Apr 2015 14:11:24 +0000 (+0900) Subject: eina thread_queue: fix typo in doc. X-Git-Tag: v1.14.0-beta3~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d1d62a6ab35ab22bd873dafffbf5b1469e4572e;p=platform%2Fupstream%2Fefl.git eina thread_queue: fix typo in doc. --- 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