Skip to content

Commit 70e3fb1

Browse files
committed
Merge pull request #2588 from jogo-/patch-1
Fix typos in BlinkWithoutDelay.ino
2 parents 379df90 + 351cfbb commit 70e3fb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/shared/examples/02.Digital/BlinkWithoutDelay/BlinkWithoutDelay.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Blink without Delay
22
3-
Turns on and off a light emitting diode(LED) connected to a digital
3+
Turns on and off a light emitting diode (LED) connected to a digital
44
pin, without using the delay() function. This means that other code
55
can run at the same time without being interrupted by the LED code.
66
@@ -28,7 +28,7 @@ const int ledPin = 13; // the number of the LED pin
2828
// Variables will change :
2929
int ledState = LOW; // ledState used to set the LED
3030

31-
// Generally, you shuould use "unsigned long" for variables that hold time
31+
// Generally, you should use "unsigned long" for variables that hold time
3232
// The value will quickly become too large for an int to store
3333
unsigned long previousMillis = 0; // will store last time LED was updated
3434

0 commit comments

Comments
 (0)