From baebbb4452baf279a2f6e49823b78ffd2474f2c5 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 18 Oct 2022 15:21:13 +0900 Subject: [PATCH] Fix typo issue in tts_setting document Change-Id: Iaef6463d77ebe7a742c9e7cd3c4ffd1a148f4413 Signed-off-by: Jihoon Kim --- include/tts_setting.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/tts_setting.h b/include/tts_setting.h index 75351e05..28ede180 100644 --- a/include/tts_setting.h +++ b/include/tts_setting.h @@ -85,12 +85,12 @@ typedef bool(*tts_setting_supported_engine_cb)(const char* engine_id, const char * followed by ISO 639-1 for the two-letter language code. * For example, "ko_KR" for Korean, "en_US" for American English.. * @param[in] voice_type Voice type -* @param[in] user_data User data passed from the tts_setting_foreach_surpported_voices() +* @param[in] user_data User data passed from the tts_setting_foreach_supported_voices() * * @return @c true to continue with the next iteration of the loop, \n @c false to break out of the loop. -* @pre tts_setting_foreach_surpported_voices() will invoke this callback. +* @pre tts_setting_foreach_supported_voices() will invoke this callback. * -* @see tts_setting_foreach_surpported_voices() +* @see tts_setting_foreach_supported_voices() */ typedef bool(*tts_setting_supported_voice_cb)(const char* engine_id, const char* language, int voice_type, void* user_data); -- 2.34.1