aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-05-07 13:01:58 -0700
committerXavier Noria <fxn@hashref.com>2012-05-07 13:01:58 -0700
commited2feb7962bd97c2222ba609bb01fe5165a597c8 (patch)
tree445e0f8f9efbaa5183c14ba50c85c6518b0ef404 /activesupport/lib/active_support
parent7746bf9a71804a2994f4e5c37faa3075efe1aec2 (diff)
parentd785b292a8c921989f606696dff3765836d1fb44 (diff)
downloadrails-ed2feb7962bd97c2222ba609bb01fe5165a597c8.tar.gz
rails-ed2feb7962bd97c2222ba609bb01fe5165a597c8.tar.bz2
rails-ed2feb7962bd97c2222ba609bb01fe5165a597c8.zip
Merge pull request #6064 from gazay/fix_guides_for_as_core_ext
Fix guides for as core ext
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/numeric/time.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/numeric/time.rb b/activesupport/lib/active_support/core_ext/numeric/time.rb
index 822f766af7..2bf3d1f278 100644
--- a/activesupport/lib/active_support/core_ext/numeric/time.rb
+++ b/activesupport/lib/active_support/core_ext/numeric/time.rb
@@ -8,13 +8,13 @@ class Numeric
# These methods use Time#advance for precise date calculations when using from_now, ago, etc.
# as well as adding or subtracting their results from a Time object. For example:
#
- # # equivalent to Time.now.advance(:months => 1)
+ # # equivalent to Time.current.advance(:months => 1)
# 1.month.from_now
#
- # # equivalent to Time.now.advance(:years => 2)
+ # # equivalent to Time.current.advance(:years => 2)
# 2.years.from_now
#
- # # equivalent to Time.now.advance(:months => 4, :years => 5)
+ # # equivalent to Time.current.advance(:months => 4, :years => 5)
# (4.months + 5.years).from_now
#
# While these methods provide precise calculation when used as in the examples above, care