8151868: Typo in java.time.Instant until(Temporal endExclusive, TemporalUnit unit)
authorrriggs
Wed, 23 Mar 2016 19:57:42 +0530
changeset 36662 616fd89e60ac
parent 36661 044bf6a5474a
child 36663 62a22ce669e6
8151868: Typo in java.time.Instant until(Temporal endExclusive, TemporalUnit unit) Reviewed-by: rriggs, lancea, scolebourne Contributed-by: Abhijit Roy <abhijit.r.roy@oracle.com>
jdk/src/java.base/share/classes/java/time/Instant.java
--- a/jdk/src/java.base/share/classes/java/time/Instant.java	Wed Mar 23 12:25:08 2016 +0000
+++ b/jdk/src/java.base/share/classes/java/time/Instant.java	Wed Mar 23 19:57:42 2016 +0530
@@ -1106,7 +1106,7 @@
      * complete units between the two instants.
      * The {@code Temporal} passed to this method is converted to a
      * {@code Instant} using {@link #from(TemporalAccessor)}.
-     * For example, the amount in days between two dates can be calculated
+     * For example, the amount in seconds between two dates can be calculated
      * using {@code startInstant.until(endInstant, SECONDS)}.
      * <p>
      * There are two equivalent ways of using this method.