From 5be7b4e4fe4606095d48be043e46b354c0c38b60 Mon Sep 17 00:00:00 2001 From: samskivert Date: Wed, 26 Aug 2009 22:38:34 +0000 Subject: [PATCH] Javadoc edit. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2625 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/util/Calendars.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/com/samskivert/util/Calendars.java b/src/java/com/samskivert/util/Calendars.java index 5bc55c8c..475187bc 100644 --- a/src/java/com/samskivert/util/Calendars.java +++ b/src/java/com/samskivert/util/Calendars.java @@ -96,9 +96,9 @@ public class Calendars return this; } - /** Sets the year, month and day to the specified values and the time to zero millseconds - * after midnight on that date. This mirrors {@link Calendars#at} for when you need e.g. a - * custom timezone:
Calendars.in(zone).at(2009, Calendar.JANUARY, 1)
*/ + /** Sets the time to zero milliseconds after midnight on the specified year, month and + * day. This mirrors {@link Calendars#at} for when you need e.g. a custom timezone: + *
Calendars.in(zone).at(2009, Calendar.JANUARY, 1)
*/ public Builder at (int year, int month, int day) { _calendar.set(year, month, day); return zeroTime();