* lib/rdoc/rdoc.rb (setup_output_dir): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-04-10 22:41:36 +00:00
parent e707e05fe8
commit 7be704b359
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Sun Apr 11 07:40:48 2010 NARUSE, Yui <naruse@ruby-lang.org>
* lib/rdoc/rdoc.rb (setup_output_dir): fix typo.
Sun Apr 11 07:01:41 2010 NARUSE, Yui <naruse@ruby-lang.org>
* lib/uri/common.rb (decode_www_form_component): validate.

View File

@ -144,7 +144,7 @@ class RDoc::RDoc
begin
open flag_file do |io|
unless force
Time.parse f.gets
Time.parse io.gets
io.each do |line|
file, time = line.split(/\t/, 2)
time = Time.parse(time) rescue next