From a273171ca8848e85367628343ddd64ac6c0f70c1 Mon Sep 17 00:00:00 2001 From: Marc-Andre Lafortune Date: Sat, 19 Dec 2020 13:08:24 -0500 Subject: Tweak Ractor doc [doc] [ci skip] --- ractor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ractor.c') diff --git a/ractor.c b/ractor.c index 0565827a5f..180795b9c1 100644 --- a/ractor.c +++ b/ractor.c @@ -1936,10 +1936,10 @@ ractor_moved_missing(int argc, VALUE *argv, VALUE self) /* * Document-class: Ractor::ClosedError * - * Raised when an attempt is made to take something from the Ractor's outgoing port, - * but it is closed with Ractor#close_outgoing, or to send something to Ractor's - * incoming port, and it is closed with Ractor#close_incoming, or an attempt to - * send/take something with ractor which was already terminated. + * Raised when an attempt is made to send a message to a closed port, + * or to retrieve a message from a closed and empty port. + * Ports may be closed explicitly with Ractor#close_outgoing/close_incoming + * and are closed implicitly when a Ractor terminates. * * r = Ractor.new { sleep(500) } * r.close_outgoing -- cgit v1.2.3