Fix description 94/213394/1
authorHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 01:57:28 +0000 (10:57 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Thu, 5 Sep 2019 01:57:28 +0000 (10:57 +0900)
Change-Id: I9bf54b0ae3a8fceff670a272be0523648be5c461
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
include/component_context.h

index 7f65631..b3819d6 100644 (file)
@@ -47,11 +47,11 @@ typedef void *component_context_h;
  */
 typedef enum {
        COMPONENT_STATE_INITIALIZED,    /**< The initialized state. The state that the component is constructed but the callback for creating a component is not called yet. */
-       COMPONENT_STATE_CREATED,        /**< The created state. This state that the creating callback is called.  */
-       COMPONENT_STATE_STARTED,        /**< The started state. This state that the starting callback is called. */
-       COMPONENT_STATE_RESUMED,        /**< The resumed state. This state that the resuming callback is called. */
-       COMPONENT_STATE_PAUSED,         /**< The paused state. This state that the pausing callback is called. */
-       COMPONENT_STATE_DESTROYED,      /**< The destroyed state. This state that right before the destroying callback is called. */
+       COMPONENT_STATE_CREATED,        /**< The created state. The state that the creating callback is called.  */
+       COMPONENT_STATE_STARTED,        /**< The started state. The state that the starting callback is called. */
+       COMPONENT_STATE_RESUMED,        /**< The resumed state. The state that the resuming callback is called. */
+       COMPONENT_STATE_PAUSED,         /**< The paused state. The state that the pausing callback is called. */
+       COMPONENT_STATE_DESTROYED,      /**< The destroyed state. The state that right before the destroying callback is called. */
 } component_state_e;
 
 /**