diff options
author | John Bampton <[email protected]> | 2023-02-28 03:56:06 +1000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-27 09:56:06 -0800 |
commit | 2f7270c68150d9f49b48c8ff995f4f343d216cee (patch) | |
tree | d3610c4a0980667982cdd4952572ba1a7d583046 /ractor.rb | |
parent | 526111290b2e01e798f436dfe4acc3bf10c6bbd1 (diff) |
Fix spelling (#7389)
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'ractor.rb')
-rw-r--r-- | ractor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ # # fails immediately with # # ArgumentError (can not isolate a Proc because it accesses outer variables (a).) # -# The object must be explicity shared: +# The object must be explicitly shared: # a = 1 # r = Ractor.new(a) { |a1| puts "I am in Ractor! a=#{a1}"} # |