Fix minor typos (#10124)

This commit is contained in:
spaette
2023-12-22 14:12:07 -06:00
committed by GitHub
parent 681a0f5638
commit 9e119230d4
12 changed files with 15 additions and 15 deletions

View File

@@ -1549,7 +1549,7 @@ bool EntryData::equals(const EntryData& other, CompareItemOptions options) const
return false;
}
} else if (totpSettings.isNull() != other.totpSettings.isNull()) {
// The existance of TOTP has changed between these entries
// The existence of TOTP has changed between these entries
return false;
}
if (::compare(excludeFromReports, other.excludeFromReports, options) != 0) {

View File

@@ -279,7 +279,7 @@ int Metadata::autosaveDelayMin() const
// data is not set yet, use default
return Metadata::DefaultAutosaveDelayMin;
}
bool ok; // check for QString to int op failuer
bool ok; // check for QString to int op failure
int autosaveDelayMin = autosaveDelayMinStr.toInt(&ok);
Q_ASSERT(ok);
return autosaveDelayMin;