spelling: variable

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 17:12:03 -05:00
parent d37fe946e1
commit c1e8ef32bd
5 changed files with 5 additions and 5 deletions

View file

@ -39,7 +39,7 @@ void delay_us(uint32_t us) {
void delay_ms(uint32_t millis) {
// delay_us(millis*1000) is not used because a long delay could easily
// overflow the veriable. Without the outer loop, a delay of even five
// overflow the variable. Without the outer loop, a delay of even five
// seconds would overflow.
while (millis--) {
delay_us(1000);