[前][次][番号順一覧][スレッド一覧]

ruby-changes:66824

From: Kazuki <ko1@a...>
Date: Sat, 17 Jul 2021 13:38:54 +0900 (JST)
Subject: [ruby-changes:66824] 4885c44bca (master): cont.c: fix formatting of RDoc for Fiber class

https://git.ruby-lang.org/ruby.git/commit/?id=4885c44bca

From 4885c44bca25346716969a3a0732c1bfea60f508 Mon Sep 17 00:00:00 2001
From: Kazuki Yamaguchi <k@r...>
Date: Sat, 17 Jul 2021 13:37:28 +0900
Subject: cont.c: fix formatting of RDoc for Fiber class

---
 cont.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cont.c b/cont.c
index d72d29e..b6c4b29 100644
--- a/cont.c
+++ b/cont.c
@@ -1763,8 +1763,8 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval) https://github.com/ruby/ruby/blob/trunk/cont.c#L1763
  *  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
  *  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.
+ *  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.
  *
  *  For a Fiber to behave as non-blocking, it need to be created in Fiber.new with
  *  <tt>blocking: false</tt> (which is the default), and Fiber.scheduler
-- 
cgit v1.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]