From: Jihoon Kim Date: Tue, 5 Nov 2019 02:11:44 +0000 (+0900) Subject: Fix typos X-Git-Tag: submit/tizen/20200304.050735~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3fc7f5dff151e4bcd62b66bae56bf0da7390d8e7;p=platform%2Fcore%2Fapi%2Finputmethod.git Fix typos Change-Id: Id77470fa34f5458fcb306508637d5e8ecf91c349 Signed-off-by: Jihoon Kim --- diff --git a/inputmethod/include/inputmethod_internal.h b/inputmethod/include/inputmethod_internal.h index b0dfb9a..c15e487 100644 --- a/inputmethod/include/inputmethod_internal.h +++ b/inputmethod/include/inputmethod_internal.h @@ -358,7 +358,7 @@ int ime_finalize(void); int ime_set_dotnet_flag(bool set); /** - * @brief Sets flag whether creating IME window should be defered until there is a access request. + * @brief Sets flag whether creating IME window should be deferred until there is a access request. * * @since_tizen 5.0 * diff --git a/inputmethod/src/inputmethod.cpp b/inputmethod/src/inputmethod.cpp index 113aa3e..a9800c9 100644 --- a/inputmethod/src/inputmethod.cpp +++ b/inputmethod/src/inputmethod.cpp @@ -562,7 +562,7 @@ EXPORT_API int ime_run(ime_callback_s *basic_cb, void *user_data) if (!g_basic_callback.create || !g_basic_callback.terminate || !g_basic_callback.show || !g_basic_callback.hide) { - LOGE("mandatory callback funtions are not set"); + LOGE("mandatory callback functions are not set"); memset(&g_basic_callback, 0, sizeof(ime_callback_s)); memset(&g_event_callback, 0, sizeof(ime_event_callback_s)); return IME_ERROR_NO_CALLBACK_FUNCTION; diff --git a/remote_input/include/remote_input.h b/remote_input/include/remote_input.h index 53581dc..177bfd1 100644 --- a/remote_input/include/remote_input.h +++ b/remote_input/include/remote_input.h @@ -277,7 +277,7 @@ int remote_input_metadata_updated_callback_unset(remote_input_h remote_handle); * @return 0 on success, otherwise a negative error value * @retval #REMOTE_INPUT_ERROR_NONE Successful * @retval #REMOTE_INPUT_INVALID_PARAMETER Invalid parameter - * @see remote_inputl_text_updated_callback_unset() + * @see remote_input_text_updated_callback_unset() */ int remote_input_text_updated_callback_set(remote_input_h remote_handle, remote_input_text_updated_cb callback, void *user_data); @@ -289,7 +289,7 @@ int remote_input_text_updated_callback_set(remote_input_h remote_handle, remote_ * @return 0 on success, otherwise a negative error value * @retval #REMOTE_INPUT_ERROR_NONE Successful * @retval #REMOTE_INPUT_INVALID_PARAMETER Invalid parameter - * @see remote_inputl_text_updated_callback_set() + * @see remote_input_text_updated_callback_set() */ int remote_input_text_updated_callback_unset(remote_input_h remote_handle);