Skip to content

Commit

Permalink
Fix Android BatteryTemperature descriptions (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
piti6 authored Aug 7, 2024
1 parent 6f12132 commit ed646b5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ partial class Thermal
public static class Android
{
/// <summary>
/// The latest battery temperature multiplied by 100 in Celsius.
/// The latest battery temperature multiplied by 10 in Celsius.
/// Thermal.StartMonitoring() is required to get the latest value.
/// </summary>
public static int? LatestBatteryTemperature { get; private set; }
Expand All @@ -30,7 +30,7 @@ public static class Android
/// Event that is sent when the battery temperature is changed.
/// Thermal.StartMonitoring() is required to get the latest value.
/// </summary>
/// <returns>The battery temperature multiplied by 100 in Celsius.</returns>
/// <returns>The battery temperature multiplied by 10 in Celsius.</returns>
public static event Action<int> OnBatteryTemperatureChanged;

/// <summary>
Expand Down

0 comments on commit ed646b5

Please sign in to comment.