Spelling: ... src/modules/launcher (#3694)

This commit is contained in:
Josh Soref
2020-05-25 20:27:13 -04:00
committed by GitHub
parent c674fe1f04
commit 71e528139c
29 changed files with 38 additions and 38 deletions

View File

@@ -207,7 +207,7 @@ namespace Microsoft.Plugin.Program
void InitializeTimer()
{
//multiple file writes occur on install / unistall. Adding a delay before actually indexing.
//multiple file writes occur on install / uninstall. Adding a delay before actually indexing.
var delayInterval = 5000;
_timer = new System.Timers.Timer(delayInterval);
_timer.Enabled = true;

View File

@@ -28,7 +28,7 @@ namespace Microsoft.Plugin.Program.Views.Commands
Main._settings
.DisabledProgramSources
.Where(t1 => !Main._settings
.ProgramSources // program sourcces added above already, so exlcude
.ProgramSources // program sources added above already, so exclude
.Any(x => t1.UniqueIdentifier == x.UniqueIdentifier))
.Select(x => x)
.ToList()