[NUI] Fix comments according to ACR review
authordongsug.song <dongsug.song@samsung.com>
Wed, 6 Apr 2022 01:43:58 +0000 (10:43 +0900)
committerJaehyun Cho <jaehyun0cho@gmail.com>
Wed, 20 Apr 2022 08:38:08 +0000 (17:38 +0900)
src/Tizen.NUI/src/public/Common/Color.cs

index 886c093..84cee9e 100755 (executable)
@@ -1082,10 +1082,10 @@ namespace Tizen.NUI
         /// The red component.
         /// </summary>
         /// <remarks>
-        /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor.
+        /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor.
         /// </remarks>
         /// <code>
-        /// // DO NOT use like the followings!
+        /// // DO NOT use as follows:
         /// Color color = new Color();
         /// color.R = 0.1f; 
         /// // Please USE like this
@@ -1095,7 +1095,7 @@ namespace Tizen.NUI
         /// <since_tizen> 3 </since_tizen>
         public float R
         {
-            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor")]
+            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor")]
             set
             {
                 Interop.Vector4.RSet(SwigCPtr, ValueCheck(value));
@@ -1115,10 +1115,10 @@ namespace Tizen.NUI
         /// The green component.
         /// </summary>
         /// <remarks>
-        /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor.
+        /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor.
         /// </remarks>
         /// <code>
-        /// // DO NOT use like the followings!
+        /// // DO NOT use as follows:
         /// Color color = new Color();
         /// color.G = 0.5f; 
         /// // Please USE like this
@@ -1128,7 +1128,7 @@ namespace Tizen.NUI
         /// <since_tizen> 3 </since_tizen>
         public float G
         {
-            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor")]
+            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor")]
             set
             {
                 Interop.Vector4.GSet(SwigCPtr, ValueCheck(value));
@@ -1148,10 +1148,10 @@ namespace Tizen.NUI
         /// The blue component.
         /// </summary>
         /// <remarks>
-        /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor.
+        /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor.
         /// </remarks>
         /// <code>
-        /// // DO NOT use like the followings!
+        /// // DO NOT use as follows:
         /// Color color = new Color();
         /// color.B = 0.9f; 
         /// // Please USE like this
@@ -1161,7 +1161,7 @@ namespace Tizen.NUI
         /// <since_tizen> 3 </since_tizen>
         public float B
         {
-            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor")]
+            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor")]
             set
             {
                 Interop.Vector4.BSet(SwigCPtr, ValueCheck(value));
@@ -1181,10 +1181,10 @@ namespace Tizen.NUI
         /// The alpha component.
         /// </summary>
         /// <remarks>
-        /// The setter is deprecated in API8 and will be removed in API10. Please use new Color(...) constructor.
+        /// The setter is deprecated in API8 and will be removed in API10. Use the new Color(...) constructor.
         /// </remarks>
         /// <code>
-        /// // DO NOT use like the followings!
+        /// // DO NOT use as follows:
         /// Color color = new Color();
         /// color.A = 1.0f; 
         /// // Please USE like this
@@ -1194,7 +1194,7 @@ namespace Tizen.NUI
         /// <since_tizen> 3 </since_tizen>
         public float A
         {
-            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. please use new Color(...) constructor")]
+            [Obsolete("Please do not use this setter, Deprecated in API8, will be removed in API10. Use the new Color(...) constructor")]
             set
             {
                 Interop.Vector4.ASet(SwigCPtr, ValueCheck(value));