summaryrefslogtreecommitdiff
path: root/include/rtc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtc.h')
-rw-r--r--include/rtc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rtc.h b/include/rtc.h
index fa56634c5b..c9909bbc48 100644
--- a/include/rtc.h
+++ b/include/rtc.h
@@ -20,9 +20,9 @@
struct calendar_date {
/* The number of years since A.D. 2000, i.e. year = 17 for y2017 */
uint8_t year;
- /* 1-based indexing, i.e. sane values range from 1 to 12 */
+ /* 1-based indexing, i.e. valid values range from 1 to 12 */
uint8_t month;
- /* 1-based indexing, i.e. sane values range from 1 to 31 */
+ /* 1-based indexing, i.e. valid values range from 1 to 31 */
uint8_t day;
};