summaryrefslogtreecommitdiff
path: root/ractor.rb
diff options
context:
space:
mode:
authorJohn Bampton <jbampton@users.noreply.github.com>2023-02-28 03:56:06 +1000
committerGitHub <noreply@github.com>2023-02-27 09:56:06 -0800
commit2f7270c68150d9f49b48c8ff995f4f343d216cee (patch)
treed3610c4a0980667982cdd4952572ba1a7d583046 /ractor.rb
parent526111290b2e01e798f436dfe4acc3bf10c6bbd1 (diff)
downloadruby-2f7270c68150d9f49b48c8ff995f4f343d216cee.tar.gz
Fix spelling (#7389)
Diffstat (limited to 'ractor.rb')
-rw-r--r--ractor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ractor.rb b/ractor.rb
index e7485dc4bf..fc9462c149 100644
--- a/ractor.rb
+++ b/ractor.rb
@@ -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}"}
#