Skip to content

Commit

Permalink
Fix typo in EEPROM debug message (#7934)
Browse files Browse the repository at this point in the history
Fix #7933
  • Loading branch information
earlephilhower authored Mar 22, 2021
1 parent edcbdbe commit fdc295d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/EEPROM/EEPROM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void EEPROMClass::write(int const address, uint8_t const value) {
return;
}
if(!_data) {
DEBUGV("EEPROMClass::read without ::begin\n");
DEBUGV("EEPROMClass::write without ::begin\n");
return;
}

Expand Down

0 comments on commit fdc295d

Please sign in to comment.