From e2d763f25d58303d32fa67dcd3abff29330edd28 Mon Sep 17 00:00:00 2001 From: Weilin Xu Date: Wed, 26 Apr 2023 21:24:08 +0000 Subject: [PATCH] Fix Result enum doc in AIDL broadcast radio HAL Bug: 279789152 Test: atest VtsHalBroadcastradioAidlTargetTest Change-Id: I204f6c8836534e1bf6ff6309ca0172a2cbcc64a6 --- .../aidl/android/hardware/broadcastradio/Result.aidl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/broadcastradio/aidl/android/hardware/broadcastradio/Result.aidl b/broadcastradio/aidl/android/hardware/broadcastradio/Result.aidl index 9f7263a1f1..f775bd04ee 100644 --- a/broadcastradio/aidl/android/hardware/broadcastradio/Result.aidl +++ b/broadcastradio/aidl/android/hardware/broadcastradio/Result.aidl @@ -39,7 +39,7 @@ enum Result { INVALID_ARGUMENTS, /** - * Error used when the service is of invalid state (i.e. callback + * Error used when the service is on invalid state (i.e. callback * is not registered for IBroadcastRadio). */ INVALID_STATE, @@ -50,13 +50,13 @@ enum Result { NOT_SUPPORTED, /** - * Error used when a tune, seek, step or operation is not completed - * within {@link IBroadcastRadio#LIST_COMPLETE_TIMEOUT_MS}. + * Error used when a tune, seek, or step operation is not completed + * within {@link IBroadcastRadio#TUNER_TIMEOUT_MS}. */ TIMEOUT, /** - * Error used when a tune, seek, step or operation is canceled before + * Error used when a tune, seek, or step operation is canceled before * being processed. */ CANCELED,