diff options
author | Trevor Wennblom <trevor@well.com> | 2012-04-07 18:05:36 -0500 |
---|---|---|
committer | Trevor Wennblom <trevor@well.com> | 2012-04-07 19:03:49 -0500 |
commit | c5abd0604d826457dd3f5c49e107db7f4e943c76 (patch) | |
tree | 6da6fdb5d3498ee0cda5fa57c2ae1c27194e1791 | |
parent | af422bf3c51731320a954ff7c00e0374cfa0eb6c (diff) | |
download | rails-c5abd0604d826457dd3f5c49e107db7f4e943c76.tar.gz rails-c5abd0604d826457dd3f5c49e107db7f4e943c76.tar.bz2 rails-c5abd0604d826457dd3f5c49e107db7f4e943c76.zip |
update stdlib doc urls in comments - active_support/core_ext/[integer|numeric]/time.rb
http://stdlib.rubyonrails.org/ last updated in 2005
-rw-r--r-- | activesupport/lib/active_support/core_ext/integer/time.rb | 6 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/numeric/time.rb | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/core_ext/integer/time.rb b/activesupport/lib/active_support/core_ext/integer/time.rb index c677400396..894b5d0696 100644 --- a/activesupport/lib/active_support/core_ext/integer/time.rb +++ b/activesupport/lib/active_support/core_ext/integer/time.rb @@ -24,9 +24,9 @@ class Integer # 1.year.to_f.from_now # # In such cases, Ruby's core - # Date[http://stdlib.rubyonrails.org/libdoc/date/rdoc/index.html] and - # Time[http://stdlib.rubyonrails.org/libdoc/time/rdoc/index.html] should be used for precision - # date and time arithmetic + # Date[http://ruby-doc.org/stdlib/libdoc/date/rdoc/Date.html] and + # Time[http://ruby-doc.org/stdlib/libdoc/time/rdoc/Time.html] should be used for precision + # date and time arithmetic. def months ActiveSupport::Duration.new(self * 30.days, [[:months, self]]) end diff --git a/activesupport/lib/active_support/core_ext/numeric/time.rb b/activesupport/lib/active_support/core_ext/numeric/time.rb index 58a03d508e..822f766af7 100644 --- a/activesupport/lib/active_support/core_ext/numeric/time.rb +++ b/activesupport/lib/active_support/core_ext/numeric/time.rb @@ -28,9 +28,9 @@ class Numeric # 1.year.to_f.from_now # # In such cases, Ruby's core - # Date[http://stdlib.rubyonrails.org/libdoc/date/rdoc/index.html] and - # Time[http://stdlib.rubyonrails.org/libdoc/time/rdoc/index.html] should be used for precision - # date and time arithmetic + # Date[http://ruby-doc.org/stdlib/libdoc/date/rdoc/Date.html] and + # Time[http://ruby-doc.org/stdlib/libdoc/time/rdoc/Time.html] should be used for precision + # date and time arithmetic. def seconds ActiveSupport::Duration.new(self, [[:seconds, self]]) end |