1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* remove trailing spaces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
svn 2016-09-07 16:15:46 +00:00
parent 4a660c72a3
commit 806eb7e14d

View file

@ -1624,7 +1624,7 @@ class TestRefinement < Test::Unit::TestCase
MethodMissing.call_undefined_method
end
end
module VisibleRefinements
module RefA
refine Object do
@ -1642,7 +1642,7 @@ class TestRefinement < Test::Unit::TestCase
module RefC
using RefA
refine Object do
def in_ref_c
end
@ -1658,7 +1658,7 @@ class TestRefinement < Test::Unit::TestCase
using RefC
USED_REFS = Module.used_refinements
end
module Combined
using RefA
using RefB