From dc165ce46ee2bcc5fbfcb1a8d42686162eb4acb6 Mon Sep 17 00:00:00 2001 From: pfeerick Date: Fri, 23 Sep 2016 13:11:19 +1000 Subject: [PATCH] Minor change to example comment Can't be the right word! ;) --- build/shared/examples/02.Digital/Debounce/Debounce.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/shared/examples/02.Digital/Debounce/Debounce.ino b/build/shared/examples/02.Digital/Debounce/Debounce.ino index 3ea8727c6..bdf3bdeae 100644 --- a/build/shared/examples/02.Digital/Debounce/Debounce.ino +++ b/build/shared/examples/02.Digital/Debounce/Debounce.ino @@ -41,7 +41,7 @@ int buttonState; // the current reading from the input pin int lastButtonState = LOW; // the previous reading from the input pin // the following variables are unsigned long's because the time, measured in miliseconds, -// will quickly become a bigger number than can't be stored in an int. +// will quickly become a bigger number than can be stored in an int. unsigned long lastDebounceTime = 0; // the last time the output pin was toggled unsigned long debounceDelay = 50; // the debounce time; increase if the output flickers