@@ -404,7 +404,7 @@ public ValueRange range(TemporalField field) {
404404 * <p>
405405 * If the field is a {@link ChronoField} then the query is implemented here.
406406 * The {@link #isSupported(TemporalField) supported fields} will return valid
407- * values based on this hour-minute, .
407+ * values based on this hour-minute.
408408 * All other {@code ChronoField} instances will throw an {@code UnsupportedTemporalTypeException}.
409409 * <p>
410410 * If the field is not a {@code ChronoField}, then the result of this method
@@ -674,13 +674,13 @@ public HourMinute plus(TemporalAmount amountToAdd) {
674674 * The supported fields behave as follows:
675675 * <ul>
676676 * <li>{@code MINUTES} -
677- * Returns a {@code LocalTime } with the specified number of minutes added.
677+ * Returns an {@code HourMinute } with the specified number of minutes added.
678678 * This is equivalent to {@link #plusMinutes(long)}.
679679 * <li>{@code HOURS} -
680- * Returns a {@code LocalTime } with the specified number of hours added.
680+ * Returns an {@code HourMinute } with the specified number of hours added.
681681 * This is equivalent to {@link #plusHours(long)}.
682682 * <li>{@code HALF_DAYS} -
683- * Returns a {@code LocalTime } with the specified number of half-days added.
683+ * Returns an {@code HourMinute } with the specified number of half-days added.
684684 * This is equivalent to {@link #plusHours(long)} with the amount
685685 * multiplied by 12.
686686 * </ul>
@@ -842,14 +842,9 @@ public HourMinute minusMinutes(long minutesToSubtract) {
842842 /**
843843 * Queries this hour-minute using the specified query.
844844 * <p>
845- * This queries this hour-minute using the specified query strategy object.
846- * The {@code TemporalQuery} object defines the logic to be used to
847- * obtain the result. Read the documentation of the query to understand
848- * what the result of this method will be.
849- * <p>
850- * The result of this method is obtained by invoking the
851- * {@link TemporalQuery#queryFrom(TemporalAccessor)} method on the
852- * specified query passing {@code this} as the argument.
845+ * {@link TemporalQueries#localTime()} and {@link TemporalQueries#precision()} are directly supported.
846+ * Otherwise, the result of this method is obtained by invoking
847+ * {@link TemporalAccessor#query(TemporalQuery)} on the parent interface.
853848 *
854849 * @param <R> the type of the result
855850 * @param query the query to invoke, not null
0 commit comments