[DOC] remove space from inside code span element

This commit is contained in:
John Bampton 2022-12-29 23:20:39 +10:00 committed by GitHub
parent b3d330c39e
commit f430701b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: git 2022-12-29 13:20:59 +00:00
Merged: https://github.com/ruby/ruby/pull/7036

Merged-By: nobu <nobu@ruby-lang.org>

View File

@ -393,7 +393,7 @@ TODO: `select` syntax of go-language uses round-robin technique to make fair sch
* `Ractor#close_incoming/outgoing` close incoming/outgoing ports (similar to `Queue#close`). * `Ractor#close_incoming/outgoing` close incoming/outgoing ports (similar to `Queue#close`).
* `Ractor#close_incoming` * `Ractor#close_incoming`
* `r.send(obj) ` where `r`'s incoming port is closed, will raise an exception. * `r.send(obj)` where `r`'s incoming port is closed, will raise an exception.
* When the incoming queue is empty and incoming port is closed, `Ractor.receive` raises an exception. If the incoming queue is not empty, it dequeues an object without exceptions. * When the incoming queue is empty and incoming port is closed, `Ractor.receive` raises an exception. If the incoming queue is not empty, it dequeues an object without exceptions.
* `Ractor#close_outgoing` * `Ractor#close_outgoing`
* `Ractor.yield` on a Ractor which closed the outgoing port, it will raise an exception. * `Ractor.yield` on a Ractor which closed the outgoing port, it will raise an exception.