Skip to content

Commit 76bb41b

Browse files
committed
Fix typo in comments
1 parent 33354ff commit 76bb41b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

esp3d/src/core/esp3d_commands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,7 @@ bool ESP3DCommands::dispatch(ESP3DMessage *msg) {
14821482
tmp.replace("\r", "");
14831483
tmp.trim();
14841484
tmp += "\n";
1485-
//Override lock from Marlin if error was displayed previouly preventing any update
1485+
//Override lock from Marlin if error was displayed previously preventing any update
14861486
if (ESP3DSettings::GetFirmwareTarget() == MARLIN ||
14871487
ESP3DSettings::GetFirmwareTarget() == MARLIN_EMBEDDED) {
14881488
tmp = "M117\n" + tmp;

esp3d/src/modules/update/update_service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ bool processString(const char** keysval, const uint16_t* keypos,
132132
char& T, int& P) {
133133
for (uint i = 0; i < size; i++) {
134134
if (strcasecmp(keysval[i], key) == 0) {
135-
// if it is a previouly saved scrambled password ignore it
135+
// if it is a previously saved scrambled password ignore it
136136
if (strcasecmp(value, "********") != 0) {
137137
T = 'S';
138138
P = keypos[i];

0 commit comments

Comments
 (0)