From b3cf3e8f6ff3012dc6edffb3217ad84a762b2b54 Mon Sep 17 00:00:00 2001 From: Stephen Robinson Date: Sat, 22 Jan 2022 17:57:47 -0800 Subject: [PATCH] Correct comment in time.h (#715) There was `microseconds` written where there should have been `milliseconds`. Co-authored-by: Stephen --- src/common/pico_time/include/pico/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/pico_time/include/pico/time.h b/src/common/pico_time/include/pico/time.h index c00b7a8..9a6ce43 100644 --- a/src/common/pico_time/include/pico/time.h +++ b/src/common/pico_time/include/pico/time.h @@ -76,7 +76,7 @@ static inline uint32_t us_to_ms(uint64_t us) { * \ingroup timestamp * \brief Convert a timestamp into a number of milliseconds since boot. * \param t an absolute_time_t value to convert - * \return the number of microseconds since boot represented by t + * \return the number of milliseconds since boot represented by t * \sa to_us_since_boot() */ static inline uint32_t to_ms_since_boot(absolute_time_t t) {