Release 4.0.0-preview1-00175
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Vision / MediaVision / Quadrangle.cs
index aff9ba3..708621c 100755 (executable)
@@ -21,17 +21,17 @@ namespace Tizen.Multimedia.Vision
     /// <summary>
     /// Represents a region with 4 <see cref="Point"/>s.
     /// </summary>
-    /// <since_tizen> 3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class Quadrangle
     {
 
         /// <summary>
-        /// Initialize a new instance of the <see cref="Quadrangle"/> class with an array of <see cref="Point"/>.
+        /// Initializes a new instance of the <see cref="Quadrangle"/> class with an array of <see cref="Point"/>.
         /// </summary>
         /// <remarks><paramref name="points"/> must have 4 elements.</remarks>
-        /// <param name="points">four points that define object bounding quadrangle.</param>
-        /// <exception cref="ArgumentException">The Length of <paramref name="points"/> is not 4.</exception>
-        /// <since_tizen> 3</since_tizen>
+        /// <param name="points">Four points that define the object bounding quadrangle.</param>
+        /// <exception cref="ArgumentException">The length of <paramref name="points"/> is not 4.</exception>
+        /// <since_tizen> 3 </since_tizen>
         public Quadrangle(Point[] points)
         {
             if (points.Length != 4)
@@ -45,7 +45,7 @@ namespace Tizen.Multimedia.Vision
         /// <summary>
         /// Gets four points that define the object bounding quadrangle.
         /// </summary>
-        /// <since_tizen> 3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public Point[] Points { get; }
 
         /// <summary>