1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Fix typo in EEPROM debug message (#7934)

Fix #7933
This commit is contained in:
Earle F. Philhower, III
2021-03-22 08:05:33 -07:00
committed by GitHub
parent edcbdbea45
commit fdc295dfae

View File

@ -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;
}