aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-07-19 10:35:20 +0000
committerMichael Koziarski <michael@koziarski.com>2007-07-19 10:35:20 +0000
commit8b5eb2bacc9e61c6a23b85c03933ef6e2071fab8 (patch)
treef226f1530a0b82a4da4720a92faf616a3824e30f /activesupport
parent1eb79bcc3b5df2ee4e037d06835a88961eb0a429 (diff)
downloadrails-8b5eb2bacc9e61c6a23b85c03933ef6e2071fab8.tar.gz
rails-8b5eb2bacc9e61c6a23b85c03933ef6e2071fab8.tar.bz2
rails-8b5eb2bacc9e61c6a23b85c03933ef6e2071fab8.zip
fix one line formatting bug
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7196 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/time/calculations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb
index 8f9c2ffa70..b6eb9b4288 100644
--- a/activesupport/lib/active_support/core_ext/time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/time/calculations.rb
@@ -85,7 +85,7 @@ module ActiveSupport #:nodoc:
end
# Returns a new Time representing the time a number of seconds since the instance time, this is basically a wrapper around
- #the Numeric extension. Do not use this method in combination with x.months, use months_since instead!
+ # the Numeric extension. Do not use this method in combination with x.months, use months_since instead!
def since(seconds)
initial_dst = self.dst? ? 1 : 0
f = seconds.since(self)