diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-11-26 22:04:20 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-11-26 22:06:47 +0530 |
commit | 99ff8fdab54e1a3d9377d114d8f9e3e45e6824ac (patch) | |
tree | e53834e71f3e2b5a7e326504aefebed5064af99c /activesupport | |
parent | f7545216750693b90d59d7c39ea5789835dae9d2 (diff) | |
download | rails-99ff8fdab54e1a3d9377d114d8f9e3e45e6824ac.tar.gz rails-99ff8fdab54e1a3d9377d114d8f9e3e45e6824ac.tar.bz2 rails-99ff8fdab54e1a3d9377d114d8f9e3e45e6824ac.zip |
minor doc changes
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/date/calculations.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/calculations.rb b/activesupport/lib/active_support/core_ext/date/calculations.rb index 0c4081aa8d..8e7682ae12 100644 --- a/activesupport/lib/active_support/core_ext/date/calculations.rb +++ b/activesupport/lib/active_support/core_ext/date/calculations.rb @@ -193,9 +193,9 @@ class Date alias :monday :beginning_of_week alias :at_beginning_of_week :beginning_of_week - # Returns a new +Date+/+DateTime+ representing the end of this week, week - # starts on +start_day+, default is +:monday+. +DateTime+ objects have their - # time set to 23:59:59). + # Returns a new +Date+/+DateTime+ representing the end of this week. Week is + # assumed to start on +start_day+, default is +:monday+. +DateTime+ objects + # have their time set to 23:59:59. def end_of_week(start_day = :monday) days_to_end = 6 - days_to_week_start(start_day) result = self + days_to_end.days |