summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2025-12-05 02:40:59 +0900
committerKoichi Sasada <ko1@atdot.net>2025-12-05 03:10:50 +0900
commit2aaea665bb19be8ed64605ec9aa5c990fddbd2ce (patch)
treef6e20a54e33cf819c1852d280ce18d58095f69c7 /doc
parent5062c0c621d887367af8a054e5e5d83d7ec57dd3 (diff)
fix typo s/sharable/shareable/
Diffstat (limited to 'doc')
-rw-r--r--doc/syntax/comments.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/syntax/comments.rdoc b/doc/syntax/comments.rdoc
index 00d19d588a..cb6829a984 100644
--- a/doc/syntax/comments.rdoc
+++ b/doc/syntax/comments.rdoc
@@ -170,7 +170,7 @@ In this mode, all values assigned to constants are made shareable.
# shareable_constant_value: experimental_everything
FOO = Set[1, 2, {foo: []}]
- # same as FOO = Ractor.make_sharable(...)
+ # same as FOO = Ractor.make_shareable(...)
# OR same as `FOO = Set[1, 2, {foo: [].freeze}.freeze].freeze`
var = [{foo: []}]