[NUI] Fix some typo and grammar mistake
authorseungho <sbsh.baek@samsung.com>
Tue, 11 May 2021 01:37:45 +0000 (10:37 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 21 May 2021 07:37:43 +0000 (16:37 +0900)
Signed-off-by: seungho <sbsh.baek@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/Common/TimePeriod.cs

index 46fe88d..4a21bf8 100755 (executable)
@@ -2772,7 +2772,7 @@ namespace Tizen.NUI.BaseComponents
 
         /// <summary>
         /// Set or Get TransitionOptions for the page transition.
-        /// This property is used to define how this view will be transition during Page switching.
+        /// This property is used to define how this view will be transitioned during Page switching.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public TransitionOptions TransitionOptions
index e2b62a9..fe33141 100755 (executable)
@@ -43,7 +43,7 @@ namespace Tizen.NUI
 
         /// <summary>
         /// The constructor.
-        /// Creates an time peroid object with the user-defined alpha function.
+        /// Creates an time period object with the user-defined alpha function.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public TimePeriod(int durationMilliSeconds) : this(Interop.TimePeriod.NewTimePeriod((float)durationMilliSeconds / 1000.0f), true)
@@ -53,7 +53,7 @@ namespace Tizen.NUI
 
         /// <summary>
         /// The constructor.
-        /// Creates an time peroid object with the user-defined alpha function.
+        /// Creates an time period object with the user-defined alpha function.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         public TimePeriod(float delayMilliSeconds, float durationMilliSeconds) : this(Interop.TimePeriod.NewTimePeriod((float)delayMilliSeconds / 1000.0f, (float)durationMilliSeconds / 1000.0f), true)