[Spellcheck]Refactor/review entries into different files (#29832)

* remove files

* add dictionaries

* Create expect.txt

* spelling corrections + move words

* spelling updates

* few more

* import commit from bot

* move names

* undo FZ changed by VS
This commit is contained in:
Jay
2023-11-21 16:06:01 +01:00
committed by GitHub
parent 06806ae283
commit 949b9a6185
23 changed files with 328 additions and 613 deletions

View File

@@ -28,7 +28,7 @@ namespace Wox.Infrastructure.Storage
}
// To compare the version numbers
public static bool Lessthan(string version1, string version2)
public static bool LessThan(string version1, string version2)
{
string version = "v";
string period = ".";
@@ -118,7 +118,7 @@ namespace Wox.Infrastructure.Storage
// If the previous version is below a set threshold, then we want to delete the file
// However, we do not want to delete the cache if the same version of powerToys is being launched
if (Lessthan(previousVersion, currentPowerToysVersion))
if (LessThan(previousVersion, currentPowerToysVersion))
{
ClearCache = true;
}