[ElmSharp] Fix XML documentation warnings.
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / Calendar.cs
index 7e62e01..7a20c70 100755 (executable)
@@ -256,8 +256,8 @@ namespace ElmSharp
             {
                 var tm = new Interop.Libc.SystemTime();
                 Interop.Elementary.elm_calendar_displayed_time_get(RealHandle, out tm);
-                ///TODO
-                ///If the defect is fixed, it will be removed.
+                // TODO
+                // If the defect is fixed, it will be removed.
                 var daysInMonth = DateTime.DaysInMonth(tm.tm_year + 1900, tm.tm_mon + 1);
                 var day = tm.tm_mday;
 
@@ -292,7 +292,7 @@ namespace ElmSharp
         /// </summary>
         /// <remarks>
         /// The usage should be like this;
-        /// List<string> weekDayNames = new List<string>() { "S", "M", "T", "W", "T", "F", "S" };
+        /// <![CDATA[List<string> weekDayNames = new List<string>() { "S", "M", "T", "W", "T", "F", "S" };]]>
         /// Calendar.WeekDayNames = weekDayNames;
         /// </remarks>
         public IReadOnlyList<string> WeekDayNames