Spelling fixes (user-visible)

While debugging a few WiFi issues, I got a bunch of "Unkown" errors. Fix
this, and an unrelated, but also user-visible s/propery/property/.
This commit is contained in:
Faidon Liambotis 2023-07-16 16:18:06 +03:00
parent 7c35ef778d
commit bc407b3613
2 changed files with 2 additions and 2 deletions

View File

@ -921,7 +921,7 @@ static bool attribute_lookup_lv_property(uint16_t hash, uint8_t * prop)
for(uint32_t i = 0; i < sizeof(props) / sizeof(props[0]); i++) {
if(props[i].hash == hash) {
*prop = props[1].prop;
LOG_WARNING(TAG_ATTR, F("%d found and has propery %d"), hash, props[i].prop);
LOG_WARNING(TAG_ATTR, F("%d found and has property %d"), hash, props[i].prop);
return true;
}
}

View File

@ -10,7 +10,7 @@
#define D_NO "No"
#define D_ERROR_OUT_OF_MEMORY "Out of memory"
#define D_ERROR_UNKNOWN "Unkown error"
#define D_ERROR_UNKNOWN "Unknown error"
#define D_CONFIG_NOT_CHANGED "Settings did not change"
#define D_CONFIG_CHANGED "Settings changed"