From 3d4207f9bb4f39dd06eb419cc0bf185c8f03375f Mon Sep 17 00:00:00 2001 From: Koichi Sasada <ko1@atdot.net> Date: Fri, 10 Sep 2021 13:51:50 +0900 Subject: [PATCH] Need `#` `shareable_constant_value` is magic comment. --- doc/ractor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ractor.md b/doc/ractor.md index 1c77f50e36..dd1d44e098 100644 --- a/doc/ractor.md +++ b/doc/ractor.md @@ -674,7 +674,7 @@ TABLE = Ractor.make_shareable( {a: 'ko1', b: 'ko2', c: 'ko3'} ) To make it easy, Ruby 3.0 introduced new `shareable_constant_value` Directive. ```ruby -shareable_constant_value: literal +# shareable_constant_value: literal TABLE = {a: 'ko1', b: 'ko2', c: 'ko3'} #=> Same as: TABLE = Ractor.make_shareable( {a: 'ko1', b: 'ko2', c: 'ko3'} )