spelling: whenever

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 17:14:27 -05:00
parent 8ee2a95771
commit b778cd6794

View file

@ -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);