8171940: Incorrect statement about an absolute value of months unit after period's normalization
authorrriggs
Fri, 23 Dec 2016 13:42:21 -0500
changeset 42946 955f6bc7abfd
parent 42945 1a9931e1c0f5
child 42947 2453d65278f3
8171940: Incorrect statement about an absolute value of months unit after period's normalization Reviewed-by: bpb
jdk/src/java.base/share/classes/java/time/Period.java
--- a/jdk/src/java.base/share/classes/java/time/Period.java	Fri Dec 23 13:53:22 2016 +0530
+++ b/jdk/src/java.base/share/classes/java/time/Period.java	Fri Dec 23 13:42:21 2016 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -818,7 +818,7 @@
      * Returns a copy of this period with the years and months normalized.
      * <p>
      * This normalizes the years and months units, leaving the days unit unchanged.
-     * The months unit is adjusted to have an absolute value less than 11,
+     * The months unit is adjusted to have an absolute value less than 12,
      * with the years unit being adjusted to compensate. For example, a period of
      * "1 Year and 15 months" will be normalized to "2 years and 3 months".
      * <p>