diff -r 8e486b70dff8 -r e91d5b1cb8e6 jdk/src/share/classes/java/time/chrono/Chronology.java --- a/jdk/src/share/classes/java/time/chrono/Chronology.java Wed Oct 16 17:55:49 2013 -0400 +++ b/jdk/src/share/classes/java/time/chrono/Chronology.java Thu Oct 17 10:37:23 2013 -0400 @@ -117,7 +117,7 @@ *

* The {@code Chronology} instance provides a set of methods to create {@code ChronoLocalDate} instances. * The date classes are used to manipulate specific dates. - *

* *

Adding New Calendars

* The set of available chronologies can be extended by applications. @@ -163,10 +163,10 @@ * A {@code TemporalAccessor} represents an arbitrary set of date and time information, * which this factory converts to an instance of {@code Chronology}. *

- * The conversion will obtain the chronology using {@link TemporalQueries.chronology()}. + * The conversion will obtain the chronology using {@link TemporalQueries#chronology()}. * If the specified temporal object does not have a chronology, {@link IsoChronology} is returned. *

- * This method matches the signature of the functional interface {@link TemporalQueries. + * This method matches the signature of the functional interface {@link TemporalQuery} * allowing it to be used in queries via method reference, {@code Chronology::from}. * * @param temporal the temporal to convert, not null @@ -435,7 +435,7 @@ * The conversion typically uses the {@link ChronoField#EPOCH_DAY EPOCH_DAY} * field, which is standardized across calendar systems. *

- * This method matches the signature of the functional interface {@link TemporalQueries. + * This method matches the signature of the functional interface {@link TemporalQuery} * allowing it to be used as a query via method reference, {@code aChronology::date}. * * @param temporal the temporal object to convert, not null @@ -458,7 +458,7 @@ * those fields that are equivalent to the relevant objects. * The result uses this chronology. *

- * This method matches the signature of the functional interface {@link TemporalQueries. + * This method matches the signature of the functional interface {@link TemporalQuery} * allowing it to be used as a query via method reference, {@code aChronology::localDateTime}. * * @param temporal the temporal object to convert, not null @@ -490,7 +490,7 @@ * those fields that are equivalent to the relevant objects. * The result uses this chronology. *

- * This method matches the signature of the functional interface {@link TemporalQueries. + * This method matches the signature of the functional interface {@link TemporalQuery} * allowing it to be used as a query via method reference, {@code aChronology::zonedDateTime}. * * @param temporal the temporal object to convert, not null @@ -534,10 +534,10 @@ *

* A leap-year is a year of a longer length than normal. * The exact meaning is determined by the chronology according to the following constraints. - *

* * @param prolepticYear the proleptic-year to check, not validated for range * @return true if the year is a leap year