aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/duration.rb
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-07-23 16:22:17 -0400
committerNeeraj Singh <neerajdotname@gmail.com>2010-07-23 16:22:17 -0400
commit8429e7b45bc73a44cccae41a21f552c757f93779 (patch)
tree751c7edb3760bcfea182dc257d6d701a81c926d5 /activesupport/lib/active_support/duration.rb
parent46c7a991a24db22e1a6c83e55d292c3e3e584714 (diff)
downloadrails-8429e7b45bc73a44cccae41a21f552c757f93779.tar.gz
rails-8429e7b45bc73a44cccae41a21f552c757f93779.tar.bz2
rails-8429e7b45bc73a44cccae41a21f552c757f93779.zip
making comments sentence more concise
Diffstat (limited to 'activesupport/lib/active_support/duration.rb')
-rw-r--r--activesupport/lib/active_support/duration.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/duration.rb b/activesupport/lib/active_support/duration.rb
index cd0d66a482..7da357730b 100644
--- a/activesupport/lib/active_support/duration.rb
+++ b/activesupport/lib/active_support/duration.rb
@@ -4,8 +4,8 @@ require 'active_support/core_ext/object/acts_like'
module ActiveSupport
# Provides accurate date and time measurements using Date#advance and
- # Time#advance, respectively. It mainly supports the methods on Numeric,
- # such as in this example:
+ # Time#advance, respectively. It mainly supports the methods on Numeric.
+ # Example:
#
# 1.month.ago # equivalent to Time.now.advance(:months => -1)
class Duration < BasicObject