Fix typo 06/187706/1
authorJunghoon Park <jh9216.park@samsung.com>
Tue, 28 Aug 2018 04:10:29 +0000 (13:10 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Tue, 28 Aug 2018 04:11:38 +0000 (13:11 +0900)
Change-Id: I1bf603dc6142a752d02afb319da82271b8b587bf
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
include/app_event.h

index 5d5ef83446e452478a08bf15b780d8ac7112f9d5..bbba0bd69999c7f2c1a850c452479101285d0080 100644 (file)
@@ -63,7 +63,7 @@ typedef enum {
        EVENT_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
        EVENT_ERROR_TIMED_OUT = TIZEN_ERROR_TIMED_OUT, /**< Time out */
        EVENT_ERROR_IO_ERROR = TIZEN_ERROR_IO_ERROR, /**< IO error */
-       EVENT_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED /**< Permisiion denied */
+       EVENT_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED /**< Permission denied */
 } event_error_e;
 
 
@@ -291,7 +291,7 @@ typedef enum {
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @remarks There is no corresponding key/value.
  * @remarks You can treat the initial value as "false" before you receive this event.
- * @remarks If it's already boot-completed state before you regiser event handler, you can receive the event as soon as you register the event handler.
+ * @remarks If it's already boot-completed state before you register event handler, you can receive the event as soon as you register the event handler.
  */
 #define SYSTEM_EVENT_BOOT_COMPLETED "tizen.system.event.boot_completed"
 
@@ -300,8 +300,8 @@ typedef enum {
  * @brief Definition for system-event of system : shutdown.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
  * @remarks There is no corresponding key/value.
- * @remarks You can treat the inital value as "false" before you receive this event.
- * @remarks If it's already shutting-down state before you regiser event handler, you can receive the event as soon as you register the event handler.
+ * @remarks You can treat the initial value as "false" before you receive this event.
+ * @remarks If it's already shutting-down state before you register event handler, you can receive the event as soon as you register the event handler.
 */
 #define SYSTEM_EVENT_SYSTEM_SHUTDOWN "tizen.system.event.system_shutdown"
 
@@ -446,7 +446,7 @@ typedef enum {
 /**
  * @brief Definition for key of SYSTEM_EVENT_BT_STATE.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @remarks If it's already transfering state before you register this event, you can't receive the event regarding current transfer but you can receive the following transfers.
+ * @remarks If it's already transferring state before you register this event, you can't receive the event regarding current transfer but you can receive the following transfers.
  * @see EVENT_VAL_BT_NON_TRANSFERING
  * @see EVENT_VAL_BT_TRANSFERING
  */
@@ -992,7 +992,7 @@ typedef enum {
  * @brief Adds the event handler for receiving event-data of interested events.
  *
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @remarks If you want to add the privileged event, you MUST declare right privilge first. Unless that, this function returns #EVENT_ERROR_PERMISSION_DENIED. The privileged events are commented on remarks of it's definitions.
+ * @remarks If you want to add the privileged event, you MUST declare right privilege first. Unless that, this function returns #EVENT_ERROR_PERMISSION_DENIED. The privileged events are commented on remarks of it's definitions.
  * @param[in] event_name The interested event name
  * @param[in] callback The event callback called when the event occurs
  * @param[in] user_data The user data for passing to callback