From 3794fe5b6cbd038a6d7c27312191d551b3cccbbc Mon Sep 17 00:00:00 2001 From: Kevin Gilbert Date: Wed, 17 Oct 2018 17:01:48 -0500 Subject: [PATCH 1/2] funtion->function Minor doxygen typo patch --- platform/mbed_rtc_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/mbed_rtc_time.h b/platform/mbed_rtc_time.h index 835fff7956..604fbe67b0 100644 --- a/platform/mbed_rtc_time.h +++ b/platform/mbed_rtc_time.h @@ -84,7 +84,7 @@ void set_time(time_t t); * * @param read_rtc pointer to function which returns current UNIX timestamp * @param write_rtc pointer to function which sets current UNIX timestamp, can be NULL - * @param init_rtc pointer to funtion which initializes RTC, can be NULL + * @param init_rtc pointer to function which initializes RTC, can be NULL * @param isenabled_rtc pointer to function which returns if the RTC is enabled, can be NULL */ void attach_rtc(time_t (*read_rtc)(void), void (*write_rtc)(time_t), void (*init_rtc)(void), int (*isenabled_rtc)(void)); From 048614638e0e82931a6c78d3f11ba79c2ca6c05f Mon Sep 17 00:00:00 2001 From: Amanda Butler Date: Wed, 17 Oct 2018 17:07:05 -0500 Subject: [PATCH 2/2] Copy edit mbed_rtc_time.h Copy edit existing text. --- platform/mbed_rtc_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/mbed_rtc_time.h b/platform/mbed_rtc_time.h index 604fbe67b0..4ec9c328d2 100644 --- a/platform/mbed_rtc_time.h +++ b/platform/mbed_rtc_time.h @@ -31,7 +31,7 @@ extern "C" { * * Provides mechanisms to set and read the current time, based * on the microcontroller Real-Time Clock (RTC), plus some - * standard C manipulation and formating functions. + * standard C manipulation and formatting functions. * * Example: * @code