From: Hwankyu Jhun Date: Mon, 10 May 2021 23:17:57 +0000 (+0900) Subject: Fix typo X-Git-Tag: submit/tizen/20210511.013230~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F258103%2F1;p=platform%2Fcore%2Fappfw%2Fcomponent-based-application.git Fix typo Change-Id: Icafb2f16ff17cd41b7f257cadb6ffdedb8e1b518 Signed-off-by: Hwankyu Jhun --- diff --git a/component_based/efl_base/api/component_based_app.h b/component_based/efl_base/api/component_based_app.h index 5b070b8..a319d0f 100644 --- a/component_based/efl_base/api/component_based_app.h +++ b/component_based/efl_base/api/component_based_app.h @@ -111,7 +111,7 @@ int component_based_app_exit(void); * @param[in] callback The set of lifecycle callbacks of the frame component * @param[in] user_data The user data to be passed to the callback functions * @return @a comp_class on success, otherwise NULL - * @exception #APP_ERROR_NONE Sucessful + * @exception #APP_ERROR_NONE Successful * @exception #APP_ERROR_INVALID_PARAMETER Invalid parameter * @exception #APP_ERROR_OUT_OF_MEMORY Out of memory * @see get_last_result() @@ -136,7 +136,7 @@ component_class_h component_based_app_add_frame_component( * @param[in] callback The set of lifecycle callbacks of the service component * @param[in] user_data The user data to be passed to the callback functions * @return @a comp_class on success, otherwise NULL - * @exception #APP_ERROR_NONE Sucessful + * @exception #APP_ERROR_NONE Successful * @exception #APP_ERROR_INVALID_PARAMETER Invalid parameter * @exception #APP_ERROR_OUT_OF_MEMORY Out of memory * @see get_last_result() diff --git a/component_based/efl_base/api/service_component.h b/component_based/efl_base/api/service_component.h index f79708d..e7b3aa1 100644 --- a/component_based/efl_base/api/service_component.h +++ b/component_based/efl_base/api/service_component.h @@ -154,7 +154,7 @@ typedef void (*service_component_device_orientation_changed_cb)( * @remarks The @a language must not be deallocated by the component. The @a language can be used only in the callback. * * @param[in] context The context of the service component instance - * @param[in] language The langauge + * @param[in] language The language * @param[in] user_data The user data passed from component_based_app_add_service_component() function */ typedef void (*service_component_language_changed_cb)( @@ -227,7 +227,7 @@ typedef struct { service_component_create_cb create; /**< The callback function called after the service component instance is created. */ service_component_start_command_cb start_command; /**< The callback function called when the service component instance is started. */ service_component_destroy_cb destroy; /**< The callback function called before the service component instance is destroyed. */ - service_component_restore_content_cb restore_content; /**< The callback function called when the content inforamtion of the service component instance is restored. */ + service_component_restore_content_cb restore_content; /**< The callback function called when the content information of the service component instance is restored. */ service_component_save_content_cb save_content; /**< The callback function called before the content information of the service component instance is saved. */ service_component_action_cb action; /**< The callback function called when another application sends a launch request to the component. */ service_component_device_orientation_changed_cb device_orientation_changed; /**< The callback function called when the device orientation is changed. */