diff -r 91f5e4399160 -r da9a41004459 jdk/src/share/classes/java/time/ZoneOffset.java --- a/jdk/src/share/classes/java/time/ZoneOffset.java Mon May 05 09:52:24 2014 -0700 +++ b/jdk/src/share/classes/java/time/ZoneOffset.java Thu Mar 06 16:51:30 2014 +0000 @@ -89,7 +89,7 @@ /** * A time-zone offset from Greenwich/UTC, such as {@code +02:00}. *

- * A time-zone offset is the period of time that a time-zone differs from Greenwich/UTC. + * A time-zone offset is the amount of time that a time-zone differs from Greenwich/UTC. * This is usually a fixed number of hours and minutes. *

* Different parts of the world have different time-zone offsets. @@ -334,7 +334,7 @@ * on extracting the {@link ChronoField#OFFSET_SECONDS OFFSET_SECONDS} field. *

* This method matches the signature of the functional interface {@link TemporalQuery} - * allowing it to be used in queries via method reference, {@code ZoneOffset::from}. + * allowing it to be used as a query via method reference, {@code ZoneOffset::from}. * * @param temporal the temporal object to convert, not null * @return the zone-offset, not null @@ -564,7 +564,7 @@ /** * Gets the value of the specified field from this offset as an {@code int}. *

- * This queries this offset for the value for the specified field. + * This queries this offset for the value of the specified field. * The returned value will always be within the valid range of values for the field. * If it is not possible to return the value, because the field is not supported * or for some other reason, an exception is thrown. @@ -599,7 +599,7 @@ /** * Gets the value of the specified field from this offset as a {@code long}. *

- * This queries this offset for the value for the specified field. + * This queries this offset for the value of the specified field. * If it is not possible to return the value, because the field is not supported * or for some other reason, an exception is thrown. *