Release 4.0.0-preview1-00071
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / PlaceReview.cs
index 210b307..7431fe5 100755 (executable)
@@ -19,9 +19,9 @@ using System;
 namespace Tizen.Maps
 {
     /// <summary>
-    /// Place Review information, used in Place Discovery and Search requests
+    /// Place review information, used in place discovery and search requests.
     /// </summary>
-    /// <since_tizen>3</since_tizen>
+    /// <since_tizen> 3 </since_tizen>
     public class PlaceReview
     {
         private DateTime _date;
@@ -49,45 +49,45 @@ namespace Tizen.Maps
         }
 
         /// <summary>
-        /// Gets an instance of <see cref="DateTime"/> object which representing time of this review.
+        /// Gets an instance of <see cref="DateTime"/> object representing the time of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public DateTime Date { get { return _date; } }
 
         /// <summary>
-        /// Gets a string which representing title of this review.
+        /// Gets a string representing the title of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Title { get { return _title; } }
 
         /// <summary>
-        /// Gets a value which representing rating of this review.
+        /// Gets a value representing the rating of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public double Rating { get { return _rating; } }
 
         /// <summary>
-        /// Gets a string which representing description of this review.
+        /// Gets a string representing the description of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Description { get { return _description; } }
 
         /// <summary>
-        /// Gets a string which representing language of this review.
+        /// Gets a string representing the language of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public string Language { get { return _language; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceMedia"/> object which representing review media of this review.
+        /// Gets an instance of <see cref="PlaceMedia"/> object representing the review media of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceMedia ReviewMedia { get { return _media; } }
 
         /// <summary>
-        /// Gets an instance of <see cref="PlaceLink"/> object which representing user link of this review.
+        /// Gets an instance of <see cref="PlaceLink"/> object representing the user link of this review.
         /// </summary>
-        /// <since_tizen>3</since_tizen>
+        /// <since_tizen> 3 </since_tizen>
         public PlaceLink UserLink { get { return _userLink; } }
     }
 }