Fix typo 03/258103/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 10 May 2021 23:17:57 +0000 (08:17 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 10 May 2021 23:17:57 +0000 (08:17 +0900)
Change-Id: Icafb2f16ff17cd41b7f257cadb6ffdedb8e1b518
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
component_based/efl_base/api/component_based_app.h
component_based/efl_base/api/service_component.h

index 5b070b83553943b6e7e1d5bf0afcf57a3b78faa9..a319d0fe6a18291079a53e3435300b08ebefa5ab 100644 (file)
@@ -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()
index f79708d9cdbafec78b9ce2ab595e2abeb815710f..e7b3aa1ec75f563407997448107f3d374f3adb2d 100644 (file)
@@ -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. */