From 1636105e7413d8f2c8b91f9c899d879acdc9464a Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 8 Dec 2006 08:01:06 +0000 Subject: * bin/rdoc: ues File.exist? instead of File.exists. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bin/rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/rdoc') diff --git a/bin/rdoc b/bin/rdoc index fe619137fd..7192db2655 100644 --- a/bin/rdoc +++ b/bin/rdoc @@ -46,7 +46,7 @@ end $:.each do |path| if /site_ruby/ =~ path rdoc_path = File.join(path, 'rdoc', 'rdoc.rb') - if File.exists?(rdoc_path) + if File.exist?(rdoc_path) adjust_for_existing_rdoc(path) break end -- cgit v1.2.3