[DOC] Fix article-noun agreement

This commit is contained in:
Kerrick Long 2025-01-25 23:25:06 -06:00 committed by Nobuyoshi Nakada
parent 4bde1493a7
commit 4cfc904d97
Notes: git 2025-01-30 09:45:46 +00:00

2
cont.c
View File

@ -1896,7 +1896,7 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval)
* == Non-blocking Fibers
*
* The concept of <em>non-blocking fiber</em> was introduced in Ruby 3.0.
* A non-blocking fiber, when reaching a operation that would normally block
* A non-blocking fiber, when reaching an operation that would normally block
* the fiber (like <code>sleep</code>, or wait for another process or I/O)
* will yield control to other fibers and allow the <em>scheduler</em> to
* handle blocking and waking up (resuming) this fiber when it can proceed.