From 10f4623f1c979b108a5547ecc00a93b7593a9b0d Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Thu, 5 Sep 2019 10:57:28 +0900 Subject: [PATCH] Fix description Change-Id: I9bf54b0ae3a8fceff670a272be0523648be5c461 Signed-off-by: Hwankyu Jhun --- include/component_context.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/component_context.h b/include/component_context.h index 7f65631..b3819d6 100644 --- a/include/component_context.h +++ b/include/component_context.h @@ -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; /** -- 2.7.4