mirror of
https://github.com/google/pebble.git
synced 2025-11-20 14:30:55 -05:00
spelling: variable
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -36,7 +36,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);
|
||||
|
||||
Reference in New Issue
Block a user