From 402ea4969f4e29969b1b08e9907e8785ae1c3263 Mon Sep 17 00:00:00 2001 From: "David B. Kinder" Date: Fri, 2 Nov 2018 11:49:04 -0700 Subject: [PATCH] doc: fix misspellings in doxygen comments Scan and fix misspellings in header files in /include missed during regular reviews. Signed-off-by: David B. Kinder --- include/display/cfb.h | 2 +- include/drivers/system_timer.h | 4 ++-- include/net/net_ip.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/display/cfb.h b/include/display/cfb.h index 29e70d83bcc..2ce79e9b652 100644 --- a/include/display/cfb.h +++ b/include/display/cfb.h @@ -60,7 +60,7 @@ struct cfb_font { * * @param _name Name of the font entry. * @param _width Width of the font in pixels - * @param _height Heigth of the font in pixels. + * @param _height Height of the font in pixels. * @param _caps Font capabilities. * @param _data Raw data of the font. * @param _fc Character mapped to first font element. diff --git a/include/drivers/system_timer.h b/include/drivers/system_timer.h index 6e121430e3c..cf7b1113c87 100644 --- a/include/drivers/system_timer.h +++ b/include/drivers/system_timer.h @@ -61,7 +61,7 @@ extern int z_clock_device_ctrl(struct device *device, * Note that ticks can also be passed the special value K_FOREVER, * indicating that no future timer interrupts are expected or required * and that the system is permitted to enter an indefinite sleep even - * if this could cause rolloever of the internal counter (i.e. the + * if this could cause rollover of the internal counter (i.e. the * system uptime counter is allowed to be wrong, see * k_enable_sys_clock_always_on(). * @@ -92,7 +92,7 @@ extern void z_clock_set_timeout(s32_t ticks, bool idle); * @brief Timer idle exit notification * * This notifies the timer driver that the system is exiting the idle - * and allows it to do whatever bookeeping is needed to restore timer + * and allows it to do whatever bookkeeping is needed to restore timer * operation and compute elapsed ticks. * * @note Legacy timer drivers also use this opportunity to call back diff --git a/include/net/net_ip.h b/include/net/net_ip.h index 85dcab23308..45ac7b865cc 100644 --- a/include/net/net_ip.h +++ b/include/net/net_ip.h @@ -703,12 +703,12 @@ static inline bool net_ipv6_is_addr_mcast_site(const struct in6_addr *addr) } /** - * @brief Check if the IPv6 address is an organisation scope multicast + * @brief Check if the IPv6 address is an organization scope multicast * address (FFx8::). * * @param addr IPv6 address. * - * @return True if the address is an organisation scope multicast address, + * @return True if the address is an organization scope multicast address, * false otherwise. */ static inline bool net_ipv6_is_addr_mcast_org(const struct in6_addr *addr)