summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJohn Bampton <jbampton@users.noreply.github.com>2022-12-29 23:20:39 +1000
committerGitHub <noreply@github.com>2022-12-29 22:20:39 +0900
commitf430701b1bd4583ccea2bc9831febf1924949398 (patch)
tree93a121a186d63cced30009572ca61e1bd762cbe8 /doc
parentb3d330c39ebbf27cefc2d83109dad9e0b3b0e94f (diff)
[DOC] remove space from inside code span element
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7036 Merged-By: nobu <nobu@ruby-lang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/ractor.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ractor.md b/doc/ractor.md
index 843754c263..be1b220826 100644
--- a/doc/ractor.md
+++ b/doc/ractor.md
@@ -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`
- * `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.
* `Ractor#close_outgoing`
* `Ractor.yield` on a Ractor which closed the outgoing port, it will raise an exception.