[DOC] Add parenthetical to explain what FIFO abbrev means

This commit is contained in:
Shane Becker 2023-07-12 16:57:03 -07:00 committed by Nobuyoshi Nakada
parent 0454887a0e
commit fff4773085
Notes: git 2023-07-13 12:39:50 +00:00

View File

@ -846,8 +846,8 @@ queue_closed_result(VALUE self, struct rb_queue *q)
* information must be exchanged safely between multiple threads. The * information must be exchanged safely between multiple threads. The
* Thread::Queue class implements all the required locking semantics. * Thread::Queue class implements all the required locking semantics.
* *
* The class implements FIFO type of queue. In a FIFO queue, the first * The class implements FIFO (first in, first out) type of queue.
* tasks added are the first retrieved. * In a FIFO queue, the first tasks added are the first retrieved.
* *
* Example: * Example:
* *