1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

Fix typos in source code (#2258)

This commit is contained in:
yan0f
2023-01-06 19:06:50 +03:00
committed by GitHub
parent 41c43f4805
commit 9740dd8c75
13 changed files with 15 additions and 15 deletions

View File

@@ -856,7 +856,7 @@ static bool nfc_device_load_mifare_classic_data(FlipperFormat* file, NfcDevice*
bool old_format = false;
// Read Mifare Classic format version
if(!flipper_format_read_uint32(file, "Data format version", &data_format_version, 1)) {
// Load unread sectors with zero keys access for backward compatability
// Load unread sectors with zero keys access for backward compatibility
if(!flipper_format_rewind(file)) break;
old_format = true;
} else {
@@ -1125,7 +1125,7 @@ static bool nfc_device_load_data(NfcDevice* dev, FuriString* path, bool show_dia
}
do {
// Check existance of shadow file
// Check existence of shadow file
nfc_device_get_shadow_path(path, temp_str);
dev->shadow_file_exist =
storage_common_stat(dev->storage, furi_string_get_cstr(temp_str), NULL) == FSE_OK;