From 4cfc904d9706512732d06c17238be9eaff7e4ca9 Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Sat, 25 Jan 2025 23:25:06 -0600 Subject: [PATCH] [DOC] Fix article-noun agreement --- cont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cont.c b/cont.c index 90e9618485..e7134496dd 100644 --- a/cont.c +++ b/cont.c @@ -1896,7 +1896,7 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval) * == Non-blocking Fibers * * The concept of non-blocking fiber 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 sleep, or wait for another process or I/O) * will yield control to other fibers and allow the scheduler to * handle blocking and waking up (resuming) this fiber when it can proceed.