[DOC] Add parenthetical to explain what FIFO abbrev means

This commit is contained in:
Shane Becker 2023-07-12 16:57:03 -07:00 коммит произвёл Nobuyoshi Nakada
Родитель 0454887a0e
Коммит fff4773085
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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:
*