From fdc295dfae94a04491f3fa355a79ef76f95c41c9 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Mon, 22 Mar 2021 08:05:33 -0700 Subject: [PATCH] Fix typo in EEPROM debug message (#7934) Fix #7933 --- libraries/EEPROM/EEPROM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/EEPROM/EEPROM.cpp b/libraries/EEPROM/EEPROM.cpp index 90bc5d1787..9df8bbcf73 100644 --- a/libraries/EEPROM/EEPROM.cpp +++ b/libraries/EEPROM/EEPROM.cpp @@ -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; }