fix: correct typos in comments, error messages, variables

- Fixed spelling in comments throughout codebase
- Corrected error messages and user-facing strings
- Standardized variable names (cancleGenerateion --> cancelGeneration where needed)
- No functional changes, purely cosmetic fixes
This commit is contained in:
unknown 2026-03-16 17:46:12 +04:00 committed by uvos
parent 6db87d119d
commit 61003eb84c
4 changed files with 14 additions and 14 deletions

View file

@ -21,7 +21,7 @@ public:
inline SongItem(const QString &caption = "", const QString &lyrics = "")
: caption(caption), lyrics(lyrics)
{
// Generate a unique ID using cryptographically secure random number
// Generate a unique ID using a cryptographically secure random number
uniqueId = QRandomGenerator::global()->generate64();
}
};