[ElmSharp] Fix description of API (#339)
authorJay Cho <chojoong@gmail.com>
Thu, 26 Jul 2018 08:15:30 +0000 (17:15 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 26 Jul 2018 08:15:30 +0000 (17:15 +0900)
### Description of Change ###
Fix the description of API `Entry.DisableSelection(bool disable)`

### Bugs Fixed ###
N/A

### API Changes ###
N/A

### Behavioral Changes ###
N/A

src/ElmSharp/ElmSharp/Entry.cs

index 121ace0..02abd36 100755 (executable)
@@ -1131,9 +1131,10 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// This disables the entry's selection.
+        /// This disables the entry's selection handlers.
+        /// This works properly on the profile that provides selection handlers.
         /// </summary>
-        /// <param name="disable">If true, the selection is disabled.</param>
+        /// <param name="disable">If true, the selection handlers are disabled.</param>
         /// <since_tizen> preview </since_tizen>
         public void DisableSelection(bool disable)
         {
@@ -1192,4 +1193,4 @@ namespace ElmSharp
             return Interop.Elementary.elm_entry_add(parent.Handle);
         }
     }
-}
\ No newline at end of file
+}