summaryrefslogtreecommitdiff
path: root/doc/ractor.md
diff options
context:
space:
mode:
authorIvan Denysov <johnny.denisov@gmail.com>2020-12-20 18:24:30 +0100
committerMarc-André Lafortune <github@marc-andre.ca>2020-12-20 12:38:11 -0500
commit435b619a3d5a2d5754a3f739c50f64d1ad520ffc (patch)
tree7bb2bb2437f0c2069082fbaa78b186fdb8f2902d /doc/ractor.md
parent7600f69a8e7955fc2ba3ef83d0c9fa019114216e (diff)
fix phrasing in comment
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3951
Diffstat (limited to 'doc/ractor.md')
-rw-r--r--doc/ractor.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ractor.md b/doc/ractor.md
index 7867ca3f97..23b28aea6d 100644
--- a/doc/ractor.md
+++ b/doc/ractor.md
@@ -163,7 +163,7 @@ Error in the given block will be propagated to the receiver of an outgoing messa
```ruby
r = Ractor.new do
- raise 'ok' # exception will be transferred receiver
+ raise 'ok' # exception will be transferred to the receiver
end
begin