summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-21 13:25:03 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-12-21 13:25:03 +0900
commit74a78778362a7ad9aa246f2cb1a30174a6007365 (patch)
treeffe7f3708e83b159bc00d35cb7d399b1bda77f9d
parent1ecac8e4d031c244df711d573fa73ce339ffa2f5 (diff)
[DOC] Remove about FrozenError from Ractor::MovedObject [ci skip]
Because unfreeze Ractor::MovedObject at https://github.com/ruby/ruby/commit/76e88480371469400346fca609efe67096813915
-rw-r--r--ractor.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/ractor.c b/ractor.c
index 7c5c864612..8c4f06a6b0 100644
--- a/ractor.c
+++ b/ractor.c
@@ -2009,15 +2009,6 @@ ractor_moved_missing(int argc, VALUE *argv, VALUE self)
* # => true
* ary.inspect
* # Ractor::MovedError (can not send any methods to a moved object)
- *
- * The class MovedObject is frozen to avoid tampering with it:
- *
- * class Ractor::MovedObject
- * def inspect
- * "<MyMovedObject>"
- * end
- * end
- * # FrozenError (can't modify frozen class: Ractor::MovedObject)
*/
// Main docs are in ractor.rb, but without this clause there are weird artifacts