summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-09-13 12:35:06 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-09-13 12:35:06 +0900
commit3bdf8efd81fc283fd2b347f5a238e7b57f886e90 (patch)
tree91e49fb562379c7d809dc01f9a8dd24cee8f56b1 /bootstraptest
parent0ac185be403e361da31901be4d58710000367330 (diff)
Fix typos [ci skip]
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_ractor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstraptest/test_ractor.rb b/bootstraptest/test_ractor.rb
index 96eedbf90d..141962e913 100644
--- a/bootstraptest/test_ractor.rb
+++ b/bootstraptest/test_ractor.rb
@@ -345,7 +345,7 @@ assert_equal 'hello', %q{
end
}
-# Access to global-variables are prohibitted
+# Access to global-variables are prohibited
assert_equal 'can not access global variables $gv from non-main Ractors', %q{
$gv = 1
r = Ractor.new do
@@ -359,7 +359,7 @@ assert_equal 'can not access global variables $gv from non-main Ractors', %q{
end
}
-# Access to global-variables are prohibitted
+# Access to global-variables are prohibited
assert_equal 'can not access global variables $gv from non-main Ractors', %q{
r = Ractor.new do
$gv = 1