[EGIT] [core/efl] master 01/01: eina thread_queue: fix typo in doc.

2015-04-22 Thread ChunEon Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=023a91dc7de37fbc378be798e28019d3515319de

commit 023a91dc7de37fbc378be798e28019d3515319de
Author: ChunEon Park 
Date:   Thu Apr 23 11:35:35 2015 +0900

eina thread_queue: fix typo in doc.
---
 src/lib/eina/eina_thread_queue.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/eina/eina_thread_queue.h b/src/lib/eina/eina_thread_queue.h
index dc01917..a33e7b4 100644
--- a/src/lib/eina/eina_thread_queue.h
+++ b/src/lib/eina/eina_thread_queue.h
@@ -164,7 +164,7 @@ eina_thread_queue_wait_done(Eina_Thread_Queue *thq, void 
*allocref) EINA_ARG_NON
  * @return A pointer to the message data
  *
  * This is the same as eina_thread_queue_wait(), but if no messages are
- * available for reading, it immediately returns NULL tot he caller, without
+ * available for reading, it immediately returns NULL to the caller, without
  * waiting for a new message to arrive.
  *
  * @see eina_thread_queue_wait()

-- 




[EGIT] [core/efl] master 01/01: eina thread_queue: fix typo in doc.

2015-04-22 Thread ChunEon Park
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0d1d62a6ab35ab22bd873dafffbf5b1469e4572e

commit 0d1d62a6ab35ab22bd873dafffbf5b1469e4572e
Author: ChunEon Park 
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

--