diff options
author | Ryuta Kamizono <[email protected]> | 2021-04-26 00:10:39 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-04-26 10:07:41 +0900 |
commit | 33f2ff3babb7054f3df1efa25c1285e09613d7b8 (patch) | |
tree | 4c47e98fd4194080fb4d0d047100731b076babc0 /ractor.rb | |
parent | f9b62b5cc04fa87f0970c9ca3d1cbbc9be8bf8fe (diff) |
Fix some typos by spell checker
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4414
Diffstat (limited to 'ractor.rb')
-rw-r--r-- | ractor.rb | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -147,7 +147,7 @@ # on a moved object. # # Besides frozen objects, there are shareable objects. Class and Module objects are shareable so -# the Class/Module definitons are shared between ractors. Ractor objects are also shareable objects. +# the Class/Module definitions are shared between ractors. Ractor objects are also shareable objects. # All operations for the shareable mutable objects are thread-safe, so the thread-safety property # will be kept. We can not define mutable shareable objects in Ruby, but C extensions can introduce them. # @@ -223,7 +223,7 @@ # # == Reference # -# See {Ractor desgin doc}[rdoc-ref:doc/ractor.md] for more details. +# See {Ractor design doc}[rdoc-ref:doc/ractor.md] for more details. # class Ractor # @@ -457,7 +457,7 @@ class Ractor # # If the block returns a truthy value, the message will be removed from the incoming queue # and returned. - # Otherwise, the messsage remains in the incoming queue and the following received + # Otherwise, the message remains in the incoming queue and the following received # messages are checked by the given block. # # If there are no messages left in the incoming queue, the method will |