[Tizen.Applications] Fix typo (#444)
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications / LowBatteryEventArgs.cs
index bf0c49a..31cca9d 100755 (executable)
@@ -21,20 +21,23 @@ namespace Tizen.Applications
     /// <summary>
     /// The class for the argument of the LowBattery EventHandler
     /// </summary>
+    /// <since_tizen> 3 </since_tizen>
     public class LowBatteryEventArgs : EventArgs
     {
         /// <summary>
         /// Initializes LowBatteryEventArgs class
         /// </summary>
         /// <param name="status">The information of the LowBatteryEventArgs</param>
+        /// <since_tizen> 3 </since_tizen>
         public LowBatteryEventArgs(LowBatteryStatus status)
         {
             LowBatteryStatus = status;
         }
 
         /// <summary>
-        /// The property to get the intformation of the LowBatteryStatus
+        /// The property to get the information of the LowBatteryStatus
         /// </summary>
+        /// <since_tizen> 3 </since_tizen>
         public LowBatteryStatus LowBatteryStatus { get; private set; }
     }
 }