power/stats: Correct language surrounding timestamps

Bug: 187408125
Test: build
Change-Id: Ib3bdb7a16f4e9a5acec2e2afad41bbd6c036a27a
This commit is contained in:
Benjamin Schwartz
2021-05-11 10:20:23 -07:00
parent 0a8dd959a4
commit 1a16edd42b
2 changed files with 2 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ parcelable EnergyConsumerResult {
*/
int id;
/**
* Time since boot in milliseconds
* Time of data capture in milliseconds since boot (CLOCK_BOOTTIME clock)
*/
long timestampMs;
/**
@@ -38,4 +38,3 @@ parcelable EnergyConsumerResult {
*/
EnergyConsumerAttribution[] attribution;
}

View File

@@ -23,7 +23,7 @@ parcelable EnergyMeasurement {
*/
int id;
/**
* Approximate time of data capture in millseconds since boot
* Time of data capture in milliseconds since boot (CLOCK_BOOTTIME clock)
*/
long timestampMs;
/**
@@ -35,4 +35,3 @@ parcelable EnergyMeasurement {
*/
long energyUWs;
}