diff options
author | nagachika <[email protected]> | 2020-12-22 08:08:27 +0900 |
---|---|---|
committer | nagachika <[email protected]> | 2020-12-22 08:08:27 +0900 |
commit | 831f7850689c51f8d7b17eb76c7f20b0eda16778 (patch) | |
tree | ed035597e44ddbf0a4815bf48c9c50563e366f89 | |
parent | a29b9e5efe286e8ad1b0d67c38f03cbb70951076 (diff) |
[DOC] Fix typo in Ractor.make_shareable documentation.
-rw-r--r-- | ractor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -762,7 +762,7 @@ class Ractor # obj2s = Ractor.make_shareable(obj2, copy: true) # obj2.frozen? #=> false # obj2s.frozen? #=> true - # obj2s.object_id == obj1.object_id #=> false + # obj2s.object_id == obj2.object_id #=> false # obj2s[0].object_id == obj2[0].object_id #=> false # # See also the "Shareable and unshareable objects" section in the Ractor class docs. |