@@ -172,7 +172,7 @@ private static class Lazy {
172172     * Obtains a {@code Duration} representing a number of standard 24 hour days. 
173173     * <p> 
174174     * The seconds are calculated based on the standard definition of a day, 
175-      * where each day is 86400  seconds which implies a 24 hour day. 
175+      * where each day is 86,400  seconds which implies a 24 hour day. 
176176     * The nanosecond in second field is set to zero. 
177177     * 
178178     * @param days  the number of days, positive or negative 
@@ -187,7 +187,7 @@ public static Duration ofDays(long days) {
187187     * Obtains a {@code Duration} representing a number of standard hours. 
188188     * <p> 
189189     * The seconds are calculated based on the standard definition of an hour, 
190-      * where each hour is 3600  seconds. 
190+      * where each hour is 3,600  seconds. 
191191     * The nanosecond in second field is set to zero. 
192192     * 
193193     * @param hours  the number of hours, positive or negative 
@@ -375,8 +375,8 @@ public static Duration from(TemporalAmount amount) {
375375     * <pre> 
376376     *    "PT20.345S" -- parses as "20.345 seconds" 
377377     *    "PT15M"     -- parses as "15 minutes" (where a minute is 60 seconds) 
378-      *    "PT10H"     -- parses as "10 hours" (where an hour is 3600  seconds) 
379-      *    "P2D"       -- parses as "2 days" (where a day is 24 hours or 86400  seconds) 
378+      *    "PT10H"     -- parses as "10 hours" (where an hour is 3,600  seconds) 
379+      *    "P2D"       -- parses as "2 days" (where a day is 24 hours or 86,400  seconds) 
380380     *    "P2DT3H4M"  -- parses as "2 days, 3 hours and 4 minutes" 
381381     *    "PT-6H3M"    -- parses as "-6 hours and +3 minutes" 
382382     *    "-PT6H3M"    -- parses as "-6 hours and -3 minutes" 
@@ -477,7 +477,7 @@ private static Duration create(boolean negate, long daysAsSecs, long hoursAsSecs
477477     * {@link ChronoField#NANO_OF_SECOND NANO_OF_SECOND} field should be supported. 
478478     * <p> 
479479     * The result of this method can be a negative duration if the end is before the start. 
480-      * To guarantee to obtain  a positive duration call {@link #abs()} on the result. 
480+      * To guarantee a positive duration,  call {@link #abs()} on the result. 
481481     * 
482482     * @param startInclusive  the start instant, inclusive, not null 
483483     * @param endExclusive  the end instant, exclusive, not null 
@@ -752,7 +752,7 @@ public Duration plus(long amountToAdd, TemporalUnit unit) {
752752    /** 
753753     * Returns a copy of this duration with the specified duration in standard 24 hour days added. 
754754     * <p> 
755-      * The number of days is multiplied by 86400  to obtain the number of seconds to add. 
755+      * The number of days is multiplied by 86,400  to obtain the number of seconds to add. 
756756     * This is based on the standard definition of a day as 24 hours. 
757757     * <p> 
758758     * This instance is immutable and unaffected by this method call. 
@@ -893,7 +893,7 @@ public Duration minus(long amountToSubtract, TemporalUnit unit) {
893893    /** 
894894     * Returns a copy of this duration with the specified duration in standard 24 hour days subtracted. 
895895     * <p> 
896-      * The number of days is multiplied by 86400  to obtain the number of seconds to subtract. 
896+      * The number of days is multiplied by 86,400  to obtain the number of seconds to subtract. 
897897     * This is based on the standard definition of a day as 24 hours. 
898898     * <p> 
899899     * This instance is immutable and unaffected by this method call. 
@@ -909,7 +909,7 @@ public Duration minusDays(long daysToSubtract) {
909909    /** 
910910     * Returns a copy of this duration with the specified duration in hours subtracted. 
911911     * <p> 
912-      * The number of hours is multiplied by 3600  to obtain the number of seconds to subtract. 
912+      * The number of hours is multiplied by 3,600  to obtain the number of seconds to subtract. 
913913     * <p> 
914914     * This instance is immutable and unaffected by this method call. 
915915     * 
@@ -924,7 +924,7 @@ public Duration minusHours(long hoursToSubtract) {
924924    /** 
925925     * Returns a copy of this duration with the specified duration in minutes subtracted. 
926926     * <p> 
927-      * The number of hours  is multiplied by 60 to obtain the number of seconds to subtract. 
927+      * The number of minutes  is multiplied by 60 to obtain the number of seconds to subtract. 
928928     * <p> 
929929     * This instance is immutable and unaffected by this method call. 
930930     * 
@@ -1165,7 +1165,7 @@ public Temporal subtractFrom(Temporal temporal) {
11651165     * Gets the number of days in this duration. 
11661166     * <p> 
11671167     * This returns the total number of days in the duration by dividing the 
1168-      * number of seconds by 86400 . 
1168+      * number of seconds by 86,400 . 
11691169     * This is based on the standard definition of a day as 24 hours. 
11701170     * <p> 
11711171     * This instance is immutable and unaffected by this method call. 
@@ -1180,7 +1180,7 @@ public long toDays() {
11801180     * Gets the number of hours in this duration. 
11811181     * <p> 
11821182     * This returns the total number of hours in the duration by dividing the 
1183-      * number of seconds by 3600 . 
1183+      * number of seconds by 3,600 . 
11841184     * <p> 
11851185     * This instance is immutable and unaffected by this method call. 
11861186     * 
@@ -1272,7 +1272,7 @@ public long toNanos() {
12721272     * Extracts the number of days in the duration. 
12731273     * <p> 
12741274     * This returns the total number of days in the duration by dividing the 
1275-      * number of seconds by 86400 . 
1275+      * number of seconds by 86,400 . 
12761276     * This is based on the standard definition of a day as 24 hours. 
12771277     * <p> 
12781278     * This instance is immutable and unaffected by this method call. 
@@ -1476,10 +1476,10 @@ public int hashCode() {
14761476     * <p> 
14771477     * Examples: 
14781478     * <pre> 
1479-      *    "20.345 seconds"                 -- "PT20.345S 
1479+      *    "20.345 seconds"                 -- "PT20.345S"  
14801480     *    "15 minutes" (15 * 60 seconds)   -- "PT15M" 
1481-      *    "10 hours" (10 * 3600  seconds)    -- "PT10H" 
1482-      *    "2 days" (2 * 86400  seconds)      -- "PT48H" 
1481+      *    "10 hours" (10 * 3,600  seconds)  -- "PT10H" 
1482+      *    "2 days" (2 * 86,400  seconds)    -- "PT48H" 
14831483     * </pre> 
14841484     * Note that multiples of 24 hours are not output as days to avoid confusion 
14851485     * with {@code Period}. 
0 commit comments