1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

tm.h: fix typo

This commit is contained in:
Leon M. George 2016-03-07 10:54:30 +01:00
parent 2f0b4c20bf
commit 8a2a7cd339

View File

@ -101,7 +101,7 @@ void tm_fill_derived_values(struct tm *tm);
* @param[in] year The year.
* @param[in] mon The month.
* @param[in] mday The day in the month.
* @returns 0 iff the date is invalid.
* @returns 0 if the date is invalid.
*/
int tm_is_valid_date(int year, int mon, int mday) CONST;
@ -111,7 +111,7 @@ int tm_is_valid_date(int year, int mon, int mday) CONST;
* @param[in] hour The hour.
* @param[in] min The minutes.
* @param[in] sec The seconds.
* @returns 0 iff the time is invalid.
* @returns 0 if the time is invalid.
*/
int tm_is_valid_time(int hour, int min, int sec) CONST;