Subject: | small bug in the docs for today() |
The docs for "today()" say:
#####
This class method is equivalent to:
DateTime->now->truncate( to => 'day' );
#####
The correct equivalanet should be:
DateTime->now(@_)->truncate( to => 'day' );
( In other words: the current docs fail to mention that args to today()
are passed through to now(). )