Review and change trace API cs files 60/147860/1 preview1-00157
authorEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Tue, 22 Aug 2017 11:12:54 +0000 (16:42 +0530)
committerjoon.c.baek <joon.c.baek@samsung.com>
Wed, 6 Sep 2017 02:38:11 +0000 (11:38 +0900)
Change-Id: I319e52c79143da04a0ebb673025162088fada2b2

src/Tizen.Tracer/Tizen/Tracer.cs

index e00bfce..5fffbbb 100755 (executable)
@@ -19,7 +19,7 @@ using System;
 namespace Tizen
 {
     /// <summary>
-    /// Provides functions for writing trace message to the system trace buffer.
+    /// Provides functions for writing trace message to the system trace buffer.
     /// </summary>
     public static class Tracer
     {
@@ -29,7 +29,7 @@ namespace Tizen
         /// <remarks>
         /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.
         /// </remarks>
-        /// <param name="name">The name of event (optionally containing format specifiers)</param>
+        /// <param name="name">The name of an event (optionally containing format specifiers).</param>
         /// <seealso cref="Tizen.Tracer.End()"/>
         public static void Begin (String name)
         {
@@ -37,7 +37,7 @@ namespace Tizen
         }
 
         /// <summary>
-        /// Writes a trace event to indicate that the synchronous event has ended.
+        /// Writes a trace event to indicate that a synchronous event has ended.
         /// </summary>
         /// <remarks>
         /// Tizen.Tracer.End() ends the most recently called Tizen.Tracer.Begin().
@@ -55,8 +55,8 @@ namespace Tizen
         /// <remarks>
         /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.
         /// </remarks>
-        /// <param name="cookie">An unique identifier for distinguishing simultaneous events</param>
-        /// <param name="name">The name of event (optionally containing format specifiers)</param>
+        /// <param name="cookie">An unique identifier for distinguishing simultaneous events.</param>
+        /// <param name="name">The name of an event (optionally containing format specifiers).</param>
         /// <seealso cref="Tizen.Tracer.AsyncEnd()"/>
         public static void AsyncBegin (int cookie, String name)
         {
@@ -64,14 +64,14 @@ namespace Tizen
         }
 
         /// <summary>
-        /// Writes a trace event to indicate that the asynchronous event has ended.
+        /// Writes a trace event to indicate that an asynchronous event has ended.
         /// </summary>
         /// <remarks>
-        /// Tizen.Tracer.AsyncEnd() ends matched Tizen.Tracer.AsyncBegin() which has same cookie and name.
+        /// Tizen.Tracer.AsyncEnd() ends matched Tizen.Tracer.AsyncBegin() which has the same cookie and name.
         /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.
         /// </remarks>
-        /// <param name="cookie">An unique identifier for distinguishing simultaneous events</param>
-        /// <param name="name">The name of event (optionally containing format specifiers)</param>
+        /// <param name="cookie">An unique identifier for distinguishing simultaneous events.</param>
+        /// <param name="name">The name of an event (optionally containing format specifiers).</param>
         /// <seealso cref="Tizen.Tracer.AsyncBegin()"/>
         public static void AsyncEnd (int cookie, String name)
         {
@@ -79,13 +79,13 @@ namespace Tizen
         }
 
         /// <summary>
-        /// Writes a trace event to track change of integer value.
+        /// Writes a trace event to track change of an integer value.
         /// </summary>
         /// <remarks>
         /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method.
         /// </remarks>
-        /// <param name="value">The integer variable to trace</param>
-        /// <param name="name">The name of event (optionally containing format specifiers)</param>
+        /// <param name="value">The integer variable to trace.</param>
+        /// <param name="name">The name of an event (optionally containing format specifiers).</param>
         public static void TraceValue (int value, String name)
         {
             Interop.Tracer.TraceValue (value, name);