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

use Object#class instead of deprecated Object#type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-10-02 16:45:35 +00:00
parent 8815306dc5
commit 29cef5f795
22 changed files with 91 additions and 93 deletions

View file

@ -49,7 +49,7 @@ class Shell
rescue LoadError, Errno::ENOENT
rescue
print "load error: #{rc}\n"
print $!.type, ": ", $!, "\n"
print $!.class, ": ", $!, "\n"
for err in $@[0, $@.size - 2]
print "\t", err, "\n"
end
@ -277,7 +277,7 @@ class Shell
when IO
AppendIO.new(@shell, to, filter)
else
Shell.Fail CanNotMethodApply, "append", to.type
Shell.Fail CanNotMethodApply, "append", to.class
end
end