[ElmSharp] Fix document errata (#473)
authorWonYoung Choi <wy80.choi@samsung.com>
Tue, 18 Sep 2018 04:41:14 +0000 (13:41 +0900)
committerGitHub <noreply@github.com>
Tue, 18 Sep 2018 04:41:14 +0000 (13:41 +0900)
src/ElmSharp/ElmSharp/Point.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/Point3D.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/Rect.cs [changed mode: 0755->0644]
src/ElmSharp/ElmSharp/Size.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index df047f2..9738cde
@@ -37,7 +37,7 @@ namespace ElmSharp
         public int Y;
 
         /// <summary>
-        /// A human readable representation of <see cref="T:Tizen.UI.Point"/>.
+        /// A human readable representation of <see cref="Point"/>.
         /// </summary>
         /// <returns>The string is formatted as "{{X={0} Y={1}}}".</returns>
         /// <since_tizen> preview </since_tizen>
@@ -91,11 +91,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Point"/>s are equal.
+        /// Whether both <see cref="Point"/>s are equal.
         /// </summary>
-        /// <param name="p1">A <see cref="T:Tizen.UI.Point"/> on the left hand side.</param>
-        /// <param name="p2">A <see cref="T:Tizen.UI.Point"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Point"/>s have equal values.</returns>
+        /// <param name="p1">A <see cref="Point"/> on the left hand side.</param>
+        /// <param name="p2">A <see cref="Point"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Point"/>s have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator ==(Point p1, Point p2)
         {
@@ -103,11 +103,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Point"/>s are not equal.
+        /// Whether both <see cref="Point"/>s are not equal.
         /// </summary>
-        /// <param name="p1">A <see cref="T:Tizen.UI.Point"/> on the left hand side.</param>
-        /// <param name="p2">A <see cref="T:Tizen.UI.Point"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Point"/>s do not have equal values.</returns>
+        /// <param name="p1">A <see cref="Point"/> on the left hand side.</param>
+        /// <param name="p2">A <see cref="Point"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Point"/>s do not have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator !=(Point p1, Point p2)
         {
old mode 100755 (executable)
new mode 100644 (file)
index 4b2551c..e2fb92a
@@ -43,7 +43,7 @@ namespace ElmSharp
         public int Z;
 
         /// <summary>
-        /// A human-readable representation of <see cref="T:Tizen.UI.Point3D"/>.
+        /// A human-readable representation of <see cref="Point3D"/>.
         /// </summary>
         /// <returns>The string is formatted as "{{X={0} Y={1} Z={2}}}".</returns>
         /// <since_tizen> preview </since_tizen>
@@ -97,11 +97,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Point3D"/>s are equal.
+        /// Whether both <see cref="Point3D"/>s are equal.
         /// </summary>
-        /// <param name="p1">A <see cref="T:Tizen.UI.Point3D"/> on the left hand side.</param>
-        /// <param name="p2">A <see cref="T:Tizen.UI.Point3D"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Point3D"/>s have equal values.</returns>
+        /// <param name="p1">A <see cref="Point3D"/> on the left hand side.</param>
+        /// <param name="p2">A <see cref="Point3D"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Point3D"/>s have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator ==(Point3D p1, Point3D p2)
         {
@@ -109,11 +109,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Point3D"/>s are not equal.
+        /// Whether both <see cref="Point3D"/>s are not equal.
         /// </summary>
-        /// <param name="p1">A <see cref="T:Tizen.UI.Point3D"/> on the left hand side.</param>
-        /// <param name="p2">A <see cref="T:Tizen.UI.Point3D"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Point3D"/>s do not have equal values.</returns>
+        /// <param name="p1">A <see cref="Point3D"/> on the left hand side.</param>
+        /// <param name="p2">A <see cref="Point3D"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Point3D"/>s do not have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator !=(Point3D p1, Point3D p2)
         {
old mode 100755 (executable)
new mode 100644 (file)
index 81294d1..400dfbf
@@ -103,7 +103,7 @@ namespace ElmSharp
         public Size Size { get { return new Size { Width = Width, Height = Height }; } }
 
         /// <summary>
-        /// A human-readable representation of <see cref="T:Tizen.UI.Rect"/>.
+        /// A human-readable representation of <see cref="Rect"/>.
         /// </summary>
         /// <returns>The string is formatted as "{{X={0} Y={1} Width={2} Height={3}}}".</returns>
         /// <since_tizen> preview </since_tizen>
@@ -161,11 +161,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Rectangle"/>'s are equal.
+        /// Whether both <see cref="Rect"/>'s are equal.
         /// </summary>
-        /// <param name="r1">A <see cref="T:Tizen.UI.Rectangle"/> on the left hand side.</param>
-        /// <param name="r2">A <see cref="T:Tizen.UI.Rectangle"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Rectangle"/>'s have equal values.</returns>
+        /// <param name="r1">A <see cref="Rect"/> on the left hand side.</param>
+        /// <param name="r2">A <see cref="Rect"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Rect"/>'s have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator ==(Rect r1, Rect r2)
         {
@@ -173,11 +173,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Rectangle"/>'s are not equal.
+        /// Whether both <see cref="Rect"/>'s are not equal.
         /// </summary>
-        /// <param name="r1">A <see cref="T:Tizen.UI.Rectangle"/> on the left hand side.</param>
-        /// <param name="r2">A <see cref="T:Tizen.UI.Rectangle"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Rectangle"/>'s do not have equal values.</returns>
+        /// <param name="r1">A <see cref="Rect"/> on the left hand side.</param>
+        /// <param name="r2">A <see cref="Rect"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Rect"/>'s do not have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator !=(Rect r1, Rect r2)
         {
old mode 100755 (executable)
new mode 100644 (file)
index b8713ae..16676f4
@@ -49,7 +49,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// A human-readable representation of <see cref="T:Tizen.UI.Size"/>.
+        /// A human-readable representation of <see cref="Size"/>.
         /// </summary>
         /// <returns>The string is formatted as "{{Width={0} Height={1}}}".</returns>
         /// <since_tizen> preview </since_tizen>
@@ -103,11 +103,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Size"/>s are equal.
+        /// Whether both <see cref="Size"/>s are equal.
         /// </summary>
-        /// <param name="s1">A <see cref="T:Tizen.UI.Size"/> on the left hand side.</param>
-        /// <param name="s2">A <see cref="T:Tizen.UI.Size"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Size"/>s have equal values.</returns>
+        /// <param name="s1">A <see cref="Size"/> on the left hand side.</param>
+        /// <param name="s2">A <see cref="Size"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Size"/>s have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator ==(Size s1, Size s2)
         {
@@ -115,11 +115,11 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Whether both <see cref="T:Tizen.UI.Size"/>s are not equal.
+        /// Whether both <see cref="Size"/>s are not equal.
         /// </summary>
-        /// <param name="s1">A <see cref="T:Tizen.UI.Size"/> on the left hand side.</param>
-        /// <param name="s2">A <see cref="T:Tizen.UI.Size"/> on the right hand side.</param>
-        /// <returns>True if both <see cref="T:Tizen.UI.Size"/>s do not have equal values.</returns>
+        /// <param name="s1">A <see cref="Size"/> on the left hand side.</param>
+        /// <param name="s2">A <see cref="Size"/> on the right hand side.</param>
+        /// <returns>True if both <see cref="Size"/>s do not have equal values.</returns>
         /// <since_tizen> preview </since_tizen>
         public static bool operator !=(Size s1, Size s2)
         {