Apply HTML character entities
authorJongkyu Koo <jk.koo@samsung.com>
Fri, 30 Jun 2017 06:03:03 +0000 (15:03 +0900)
committerJongkyu Koo <jk.koo@samsung.com>
Fri, 30 Jun 2017 06:03:03 +0000 (15:03 +0900)
Change-Id: Iaffaa0a267cbcad02bddca8e87da2d81816a1050
Signed-off-by: Jongkyu Koo <jk.koo@samsung.com>
src/Tizen.Pims.Contacts/Tizen.Pims.Contacts/ContactsFilter.cs

index a6d49ee..18880ac 100644 (file)
@@ -203,27 +203,27 @@ namespace Tizen.Pims.Contacts
         public enum IntegerMatchType
         {
             /// <summary>
-            /// '='
+            /// =
             /// </summary>
             Equal,
             /// <summary>
-            /// '>'
+            /// &gt;
             /// </summary>
             GreaterThan,
             /// <summary>
-            /// '>='
+            /// &gt;=
             /// </summary>
             GreaterThanOrEqual,
             /// <summary>
-            /// <
+            /// &lt;
             /// </summary>
             LessThan,
             /// <summary>
-            /// <=
+            /// &lt;=
             /// </summary>
             LessThanOrEqual,
             /// <summary>
-            /// <>, this flag can yield poor performance
+            /// &lt;&gt;, this flag can yield poor performance
             /// </summary>
             NotEqual,
             /// <summary>