1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ void EEPROMClass::write(int const address, uint8_t const value) {
return; return;
} }
if(!_data) { if(!_data) {
DEBUGV("EEPROMClass::read without ::begin\n"); DEBUGV("EEPROMClass::write without ::begin\n");
return; return;
} }