From 5b5a026ad44974ebb2217b50da8761558255d8e7 Mon Sep 17 00:00:00 2001 From: Qin Peng Date: Fri, 9 Jun 2023 12:08:05 +0800 Subject: [PATCH] =?UTF-8?q?=E2=80=9Cupdate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Qin Peng --- zh-cn/application-dev/reference/apis/js-apis-audio.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-audio.md b/zh-cn/application-dev/reference/apis/js-apis-audio.md index af7152a3cb..c5e0df5f59 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-audio.md +++ b/zh-cn/application-dev/reference/apis/js-apis-audio.md @@ -3400,7 +3400,7 @@ audioStreamManager.getAudioEffectInfoArray(audio.ContentType.CONTENT_TYPE_MUSIC, console.error(`getAudioEffectInfoArray :ERROR: ${err}`); return; } else { - console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect mode are: ${audioEffectInfoArray}`); + console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect modes are: ${audioEffectInfoArray}`); } }); ``` @@ -3431,7 +3431,7 @@ getAudioEffectInfoArray(content: ContentType, usage: StreamUsage): Promise<Au ```js audioStreamManager.getAudioEffectInfoArray().then((audioEffectInfoArray) => { console.info(`getAudioEffectInfoArray ######### Get Promise is called ##########`); - console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect mode are: ${audioEffectInfoArray}`); + console.info(`The contentType of ${CONTENT_TYPE_MUSIC} and the streamUsage of ${STREAM_USAGE_MEDIA} 's effect modes are: ${audioEffectInfoArray}`); }).catch((err) => { console.error(`getAudioEffectInfoArray :ERROR: ${err}`); }); -- GitLab