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>
--- 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.