diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-08 08:01:06 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-08 08:01:06 +0000 |
commit | 61876de19e53e34210e5faa58e8bdd07f670a231 (patch) | |
tree | 83fca5e276b0c1b8d90122d0e0ec0ed1c28087c0 /bin/rdoc | |
parent | 3e32588e5dc467fd6d0a5504f72d00aa2c5a8e08 (diff) | |
download | ruby-61876de19e53e34210e5faa58e8bdd07f670a231.tar.gz ruby-61876de19e53e34210e5faa58e8bdd07f670a231.tar.xz ruby-61876de19e53e34210e5faa58e8bdd07f670a231.zip |
* bin/rdoc: ues File.exist? instead of File.exists.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bin/rdoc')
-rw-r--r-- | bin/rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |