From 228de60da03f1e1db893e96cd553824782398954 Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Thu, 18 Feb 2021 08:45:33 -0600 Subject: [PATCH] fix comment --- src/common/pico_base/include/pico/types.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/pico_base/include/pico/types.h b/src/common/pico_base/include/pico/types.h index de63bcb..6eab517 100644 --- a/src/common/pico_base/include/pico/types.h +++ b/src/common/pico_base/include/pico/types.h @@ -27,8 +27,8 @@ typedef uint64_t absolute_time_t; /*! fn to_us_since_boot * \brief convert an absolute_time_t into a number of microseconds since boot. - * \param t the number of microseconds since boot - * \return an absolute_time_t value equivalent to t + * \param t the absolute time to convert + * \return a number of microseconds since boot, equivalent to t */ static inline uint64_t to_us_since_boot(absolute_time_t t) { return t; @@ -52,8 +52,8 @@ typedef struct { /*! fn to_us_since_boot * \brief convert an absolute_time_t into a number of microseconds since boot. - * \param t the number of microseconds since boot - * \return an absolute_time_t value equivalent to t + * \param t the absolute time to convert + * \return a number of microseconds since boot, equivalent to t */ static inline uint64_t to_us_since_boot(absolute_time_t t) { return t._private_us_since_boot;