From b778cd67945bd46b0b32a70579d96cd794f046cd Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 17:14:27 -0500 Subject: [PATCH] spelling: whenever Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/drivers/uart.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/drivers/uart.h b/src/fw/drivers/uart.h index 264adcae..c30c35be 100644 --- a/src/fw/drivers/uart.h +++ b/src/fw/drivers/uart.h @@ -67,7 +67,7 @@ void uart_set_baud_rate(UARTDevice *dev, uint32_t baud_rate); //! @note This cannot be set at the same time as a raw interrupt handler void uart_set_rx_interrupt_handler(UARTDevice *dev, UARTRXInterruptHandler irq_handler); -//! Sets a transmit IRQ handler for the device which is called whenenver we send a byte (within an +//! Sets a transmit IRQ handler for the device which is called whenever we send a byte (within an //! ISR) //! @note This cannot be set at the same time as a raw interrupt handler void uart_set_tx_interrupt_handler(UARTDevice *dev, UARTTXInterruptHandler irq_handler);