mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
[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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user