aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJon Rowe <hello@jonrowe.co.uk>2013-04-26 18:43:02 +1000
committerJon Rowe <hello@jonrowe.co.uk>2013-04-26 18:43:02 +1000
commite33dd308c9ef395d812c27ec16955bf0d04736c5 (patch)
tree765bbf28a21e851bb19d2962157b410b7eff8691 /activesupport/lib
parent888f21492a230dd371ff4c88d3130027f32f1d91 (diff)
downloadrails-e33dd308c9ef395d812c27ec16955bf0d04736c5.tar.gz
rails-e33dd308c9ef395d812c27ec16955bf0d04736c5.tar.bz2
rails-e33dd308c9ef395d812c27ec16955bf0d04736c5.zip
formatting
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/date_and_time/calculations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb
index d6c5fac48c..0d14cba7cc 100644
--- a/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date_and_time/calculations.rb
@@ -111,7 +111,7 @@ module DateAndTime
# Returns a new date/time representing the given day in the next week.
# The +given_day_in_next_week+ defaults to the beginning of the week
# which is determined by +Date.beginning_of_week+ or +config.beginning_of_week+
- # when set. DateTime objects have their time set to 0:00.
+ # when set. +DateTime+ objects have their time set to 0:00.
def next_week(given_day_in_next_week = Date.beginning_of_week)
first_hour{ weeks_since(1).beginning_of_week.days_since(days_span(given_day_in_next_week)) }
end