diff options
Diffstat (limited to 'thread_sync.c')
-rw-r--r-- | thread_sync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_sync.c b/thread_sync.c index 5b3fb95030..85ebec4d8c 100644 --- a/thread_sync.c +++ b/thread_sync.c @@ -846,8 +846,8 @@ queue_closed_result(VALUE self, struct rb_queue *q) * information must be exchanged safely between multiple threads. The * Thread::Queue class implements all the required locking semantics. * - * The class implements FIFO type of queue. In a FIFO queue, the first - * tasks added are the first retrieved. + * The class implements FIFO (first in, first out) type of queue. + * In a FIFO queue, the first tasks added are the first retrieved. * * Example: * |