summaryrefslogtreecommitdiffhomepage
path: root/test/t/module.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2018-08-11 10:35:13 +0900
committerGitHub <[email protected]>2018-08-11 10:35:13 +0900
commit11d5782687f3f0f4f15dd78610c4d38981e31cca (patch)
treeaf1d042ecde3e5d8372b62341b4e32ebb2e350e9 /test/t/module.rb
parent35be8b252495d92ca811d76996f03c470ee33380 (diff)
parentb03f1f78e3f1bab579b21219bbecffb6eb4b7020 (diff)
downloadmruby-11d5782687f3f0f4f15dd78610c4d38981e31cca.tar.gz
mruby-11d5782687f3f0f4f15dd78610c4d38981e31cca.zip
Merge pull request #4081 from seratch/fix-typo
Fix misspelling words in comments, docs
Diffstat (limited to 'test/t/module.rb')
-rw-r--r--test/t/module.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/t/module.rb b/test/t/module.rb
index 5a46c24ff..fb82fc934 100644
--- a/test/t/module.rb
+++ b/test/t/module.rb
@@ -699,7 +699,7 @@ end
end
end
- # these assertions will not run without a #assert_seperately method
+ # these assertions will not run without a #assert_separately method
#assert 'test_prepend_optmethod' do
# bug7983 = '[ruby-dev:47124] [Bug #7983]'
# assert_separately [], %{
@@ -807,7 +807,7 @@ end
assert_equal([m, c2, m, c1], c2.ancestors[0, 4], "should accesisble prepended module in superclass")
end
- # requires #assert_seperately
+ # requires #assert_separately
#assert 'Module#prepend call super' do
# assert_separately([], <<-'end;') #do
# bug10847 = '[ruby-core:68093] [Bug #10847]'