Clean up (#5179)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Mon, 17 Apr 2023 07:04:41 +0000 (16:04 +0900)
committerGitHub <noreply@github.com>
Mon, 17 Apr 2023 07:04:41 +0000 (16:04 +0900)
- Remove an unnecessary space
- Remove an unnecessary semicolon
- Change descriptions

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.NUI.Gadget/Tizen.NUI/NUIGadgetLifecycleState.cs
src/Tizen.NUI.Gadget/Tizen.NUI/NUIGadgetManager.cs
src/Tizen.NUI.Gadget/Tizen.NUI/NUIGadgetResourceManager.cs

index ae3373d..1e5f1b0 100755 (executable)
@@ -23,7 +23,7 @@ namespace Tizen.NUI
     /// </summary>
     /// <since_tizen> 10 </since_tizen>
     [EditorBrowsable(EditorBrowsableState.Never)]
-    public  enum NUIGadgetLifecycleState
+    public enum NUIGadgetLifecycleState
     {
         /// <summary>
         /// The initialized state.
index b9270c1..b2f7b33 100755 (executable)
@@ -119,7 +119,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Adds a NUIGadget to a NUIGadgetManager.
+        /// Adds a NUIGadget to the NUIGadgetManager.
         /// </summary>
         /// <param name="resourceType">The resource type of the NUIGadget package.</param>
         /// <param name="className">The class name of the NUIGadget.</param>
@@ -196,7 +196,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Removes the NUIGadget from a NUIGadgetManager.
+        /// Removes the NUIGadget from the NUIGadgetManager.
         /// </summary>
         /// <param name="gadget">The NUIGadget object.</param>
         /// <since_tizen> 10 </since_tizen>
@@ -220,7 +220,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Removes all NUIGadget from a NUIGadgetManager.
+        /// Removes all NUIGadgets from the NUIGadgetManager.
         /// </summary>
         /// <since_tizen> 10 </since_tizen>
         public static void RemoveAll()
index cf6a388..79d7326 100755 (executable)
@@ -37,7 +37,7 @@ namespace Tizen.NUI
 
         internal NUIGadgetResourceManager(NUIGadgetInfo info)
         {
-            _resourcePath = info.ResourcePath; ;
+            _resourcePath = info.ResourcePath;
             _resourceDll = info.ResourceFile;
             _resourceClassName = info.ResourceClassName;
         }
@@ -68,7 +68,7 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Gets the return value of the string resource localied for the specified culture.
+        /// Gets the return value of the string resource localized for the specified culture.
         /// </summary>
         /// <param name="name">The name of the resource to retrieve.</param>
         /// <param name="cultureInfo">An object that represents the culture for which the resource is localied.</param>