summaryrefslogtreecommitdiffstats
path: root/core/java/android/hardware
diff options
context:
space:
mode:
Diffstat (limited to 'core/java/android/hardware')
-rw-r--r--core/java/android/hardware/hdmi/HdmiTimerRecordSources.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java b/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
index 03efd8c..b51fa2b 100644
--- a/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
+++ b/core/java/android/hardware/hdmi/HdmiTimerRecordSources.java
@@ -141,7 +141,7 @@ public class HdmiTimerRecordSources {
* @param hour hour in range of [0, 24]
* @param minute minute in range of [0, 60]
* @return {@link Duration}
- * @throw IllegalArgumentException if hour or minute is out of range
+ * @throws IllegalArgumentException if hour or minute is out of range
*/
public static Time ofTime(int hour, int minute) {
checkTimeValue(hour, minute);
@@ -163,7 +163,7 @@ public class HdmiTimerRecordSources {
* @param hour hour in range of [0, 90]
* @param minute minute in range of [0, 60]
* @return {@link Duration}
- * @throw IllegalArgumentException if hour or minute is out of range
+ * @throws IllegalArgumentException if hour or minute is out of range
*/
public static Duration ofDuration(int hour, int minute) {
checkDurationValue(hour, minute);
@@ -254,7 +254,7 @@ public class HdmiTimerRecordSources {
* {@link #RECORDING_SEQUENCE_REPEAT_FRIDAY},
* {@link #RECORDING_SEQUENCE_REPEAT_SATUREDAY}.
* @return {@link TimerInfo}.
- * @throw IllegalArgumentException if input value is invalid
+ * @throws IllegalArgumentException if input value is invalid
*/
public static TimerInfo timerInfoOf(int dayOfMonth, int monthOfYear, Time startTime,
Duration duration, int recordingSequence) {