From be7c3f019aba628b042016f715989f5959899113 Mon Sep 17 00:00:00 2001 From: "sooyeon.kim" Date: Tue, 6 Mar 2018 19:05:32 +0900 Subject: [PATCH] Fix errata Change-Id: I938cb984375b29c4030224cdf6176b6d434ff52a Signed-off-by: sooyeon.kim --- doc/uix_tts_doc.h | 2 +- include/tts.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/uix_tts_doc.h b/doc/uix_tts_doc.h index 4072264..17e3837 100644 --- a/doc/uix_tts_doc.h +++ b/doc/uix_tts_doc.h @@ -57,7 +57,7 @@ * The following table shows previous state and post state of main function. * It can be known what precondition is and which synchronous type is. * Please check both previous state and post state from the table carefully. - * In case of tts_prepare() function, state doesn't be changed at once, but acynchronously. + * In case of tts_prepare() function, state doesn't be changed at once, but asynchronously. * From the above state diagram, you can see dotted line as asynchronous api. * In this case, the state changed callback is only way to know state transition as ready. * diff --git a/include/tts.h b/include/tts.h index c46f108..db987d8 100644 --- a/include/tts.h +++ b/include/tts.h @@ -68,7 +68,7 @@ typedef enum { typedef enum { TTS_MODE_DEFAULT = 0, /**< Default mode for normal application */ TTS_MODE_NOTIFICATION = 1, /**< Notification mode */ - TTS_MODE_SCREEN_READER = 2 /**< Accessibiliity mode */ + TTS_MODE_SCREEN_READER = 2 /**< Accessibility mode */ } tts_mode_e; -- 2.7.4