[NUI] Use present tense for LineWrapMode enum description
authorabdullah <abdullahhasan10@gmail.com>
Wed, 3 Nov 2021 11:11:20 +0000 (13:11 +0200)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 9 Nov 2021 05:57:53 +0000 (14:57 +0900)
src/Tizen.NUI/src/public/Common/NUIConstants.cs

index 65706a3..fab327d 100755 (executable)
@@ -819,26 +819,26 @@ namespace Tizen.NUI
     public enum LineWrapMode
     {
         /// <summary>
-        /// The word mode will move a word to the next line.
+        /// The word mode moves a word to the next line.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         Word,
 
         /// <summary>
-        /// character will move character by character to the next line.
+        /// character moves character by character to the next line.
         /// </summary>
         /// <since_tizen> 4 </since_tizen>
         Character,
 
         /// <summary>
-        /// Hyphenation mode will move part of the word (at possible hyphen locations)
+        /// Hyphenation mode moves part of the word (at possible hyphen locations)
         /// to the next line and draw a hyphen at the end of the line.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         Hyphenation,
 
         /// <summary>
-        /// Mixed mode will try word wrap, if failed, it will try hyphenation wrap.
+        /// Mixed mode tries word wrap, if failed, it tries hyphenation wrap.
         /// </summary>
         /// <since_tizen> 9 </since_tizen>
         Mixed