From 6745acb412b9c13d6a5145ec9ae5c4fda5a31021 Mon Sep 17 00:00:00 2001 From: Hyunho Kang Date: Wed, 25 Sep 2019 13:48:29 +0900 Subject: [PATCH] Fix SuspendedState documentation (#1033) Signed-off-by: hyunho --- src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs | 6 +++--- .../Tizen.Applications/SuspendedStateEventArgs.cs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs index 77f11a6..b35dbb8 100644 --- a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedState.cs @@ -17,18 +17,18 @@ namespace Tizen.Applications { /// - /// Enumeration for suspended state. + /// Enumeration for the suspended state of the application. /// /// 6 public enum SuspendedState { /// - /// Application will enter the suspended state + /// Application will enter the suspended state. /// WillEnter = 0, /// - /// Application did exit from the suspended state + /// Application did exit from the suspended state. /// DidExit = 1 } diff --git a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs index 35bd311..ec1eeda 100644 --- a/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/SuspendedStateEventArgs.cs @@ -19,13 +19,13 @@ using System; namespace Tizen.Applications { /// - /// The class for the argument of the SuspendedState EventHandler + /// Provides data for the SuspendedState event. /// /// 6 public class SuspendedStateEventArgs : EventArgs { /// - /// Initializes SuspendedStateEventArgs class + /// Initializes a new instance of the SuspendedStateEventArgs class. /// /// The information of the SuspendedState /// 6 @@ -35,7 +35,7 @@ namespace Tizen.Applications } /// - /// The property to get the information of the SuspendedState + /// Gets the suspended state of applications. /// /// 6 public SuspendedState SuspendedState { get; private set; } -- 2.7.4