Skip to content

Commit

Permalink
Correct comment for (beginning|end)_of_minute
Browse files Browse the repository at this point in the history
  • Loading branch information
eval committed Feb 22, 2013
1 parent c5a9c02 commit eb1c5c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -123,8 +123,8 @@ def end_of_hour
change(:min => 59, :sec => 59)
end
alias :at_end_of_hour :end_of_hour
# Returns a new DateTime representing the start of the hour (hh:mm:00).

# Returns a new DateTime representing the start of the minute (hh:mm:00).
def beginning_of_minute
change(:sec => 0)
end
Expand Down
Expand Up @@ -188,13 +188,13 @@ def end_of_hour
end
alias :at_end_of_hour :end_of_hour

# Returns a new Time representing the start of the hour (x:xx:00)
# Returns a new Time representing the start of the minute (x:xx:00)
def beginning_of_minute
change(:sec => 0)
end
alias :at_beginning_of_minute :beginning_of_minute

# Returns a new Time representing the end of the hour, x:59:59.999999 (.999999999 in ruby1.9)
# Returns a new Time representing the end of the minute, x:xx:59.999999 (.999999999 in ruby1.9)
def end_of_minute
change(
:sec => 59,
Expand Down

0 comments on commit eb1c5c4

Please sign in to comment.