Javadoc edit.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2625 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-08-26 22:38:34 +00:00
parent ef967ef1fd
commit 5be7b4e4fe
+3 -3
View File
@@ -96,9 +96,9 @@ public class Calendars
return this; return this;
} }
/** Sets the year, month and day to the specified values and the time to zero millseconds /** Sets the time to zero milliseconds after midnight on the specified year, month and
* after midnight on that date. This mirrors {@link Calendars#at} for when you need e.g. a * day. This mirrors {@link Calendars#at} for when you need e.g. a custom timezone:
* custom timezone: <pre>Calendars.in(zone).at(2009, Calendar.JANUARY, 1)</pre> */ * <pre>Calendars.in(zone).at(2009, Calendar.JANUARY, 1)</pre> */
public Builder at (int year, int month, int day) { public Builder at (int year, int month, int day) {
_calendar.set(year, month, day); _calendar.set(year, month, day);
return zeroTime(); return zeroTime();