Skip to content

Commit 2e419ab

Browse files
authored
More spelling fixes that I introduced...
1 parent 7f62c43 commit 2e419ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Preferences/examples/StartCounter/StartCounter.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ESP32 startup counter example with Preferences library.
33
44
This simple example demonstrates using the Preferences library to store how many times
5-
the ESP32 module has booted. the Preferences library is a wrapper around the Non-volatile
5+
the ESP32 module has booted. The Preferences library is a wrapper around the Non-volatile
66
storage on ESP32 processor.
77
88
created for arduino-esp32 09 Feb 2017
@@ -29,7 +29,7 @@ void setup() {
2929
// Or remove the counter key only
3030
//preferences.remove("counter");
3131

32-
// Get the counter value, if the key doess not exist, return a default value of 0
32+
// Get the counter value, if the key does not exist, return a default value of 0
3333
// Note: Key name is limited to 15 chars.
3434
unsigned int counter = preferences.getUInt("counter", 0);
3535

0 commit comments

Comments
 (0)