aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/integer/time.rb
diff options
context:
space:
mode:
authorTrevor Wennblom <trevor@well.com>2012-04-07 18:05:36 -0500
committerTrevor Wennblom <trevor@well.com>2012-04-07 19:03:49 -0500
commitc5abd0604d826457dd3f5c49e107db7f4e943c76 (patch)
tree6da6fdb5d3498ee0cda5fa57c2ae1c27194e1791 /activesupport/lib/active_support/core_ext/integer/time.rb
parentaf422bf3c51731320a954ff7c00e0374cfa0eb6c (diff)
downloadrails-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
Diffstat (limited to 'activesupport/lib/active_support/core_ext/integer/time.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/integer/time.rb6
1 files changed, 3 insertions, 3 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