Skip to content

Commit

Permalink
Fix typo in Updater.cpp (#9511)
Browse files Browse the repository at this point in the history
arguement -> argument
  • Loading branch information
eltociear authored Apr 15, 2024
1 parent 908ca9f commit 394ebb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/Update/src/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ bool UpdateClass::setCryptMode(const int cryptMode){
if(cryptMode >= U_AES_DECRYPT_NONE && cryptMode <= U_AES_DECRYPT_ON){
_cryptMode = cryptMode;
}else{
log_e("bad crypt mode arguement %i", cryptMode);
log_e("bad crypt mode argument %i", cryptMode);
return false;
}
return true;
Expand Down

0 comments on commit 394ebb6

Please sign in to comment.