8170653: The javadoc of ZoneRules.previousTransition() is wrong
authorrriggs
Mon, 26 Dec 2016 23:15:06 +0530
changeset 43006 e2fdc8ee8588
parent 43005 93a6492387c4
child 43007 4de62a95642c
8170653: The javadoc of ZoneRules.previousTransition() is wrong Reviewed-by: rriggs Contributed-by: abhijit.r.roy@oracle.com
jdk/src/java.base/share/classes/java/time/zone/ZoneRules.java
--- a/jdk/src/java.base/share/classes/java/time/zone/ZoneRules.java	Mon Dec 26 23:09:54 2016 +0530
+++ b/jdk/src/java.base/share/classes/java/time/zone/ZoneRules.java	Mon Dec 26 23:15:06 2016 +0530
@@ -871,13 +871,13 @@
     /**
      * Gets the previous transition before the specified instant.
      * <p>
-     * This returns details of the previous transition after the specified instant.
+     * This returns details of the previous transition before the specified instant.
      * For example, if the instant represents a point where "summer" daylight saving time
      * applies, then the method will return the transition from the previous "winter" time.
      *
      * @param instant  the instant to get the previous transition after, not null, but null
      *  may be ignored if the rules have a single offset for all instants
-     * @return the previous transition after the specified instant, null if this is before the first transition
+     * @return the previous transition before the specified instant, null if this is before the first transition
      */
     public ZoneOffsetTransition previousTransition(Instant instant) {
         if (savingsInstantTransitions.length == 0) {