aboutsummaryrefslogtreecommitdiffstats
path: root/thread_sync.c
diff options
context:
space:
mode:
authorShane Becker <veganstraightedge@gmail.com>2023-07-12 16:57:03 -0700
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-07-13 21:39:31 +0900
commitfff4773085bd70bf14ace146388dd0b9d80f244a (patch)
treef62f7780654616d5e1b1df23eb66265c7c22e6fc /thread_sync.c
parent0454887a0e64a7fbafd460580ae619e752d0e6e8 (diff)
downloadruby-fff4773085bd70bf14ace146388dd0b9d80f244a.tar.gz
[DOC] Add parenthetical to explain what FIFO abbrev means
Diffstat (limited to 'thread_sync.c')
-rw-r--r--thread_sync.c4
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:
*