From ad9f88c487731967d822b63f10846457cccfe62f Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Fri, 30 Oct 2020 14:42:32 -0400 Subject: [PATCH] spelling: synchronized Signed-off-by: Josh Soref --- .../Storage/ListRepositoryTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs index fbd9f7b7d8..cbaaae7e7f 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Program.UnitTests/Storage/ListRepositoryTests.cs @@ -90,7 +90,7 @@ namespace Microsoft.Plugin.Program.UnitTests.Storage } }); - // Assert that this does not throw. Collections that aren't syncronized will throw an invalidoperatioexception if the list is modified while enumerating + // Assert that this does not throw. Collections that aren't synchronized will throw an invalidoperatioexception if the list is modified while enumerating await Task.WhenAll(new Task[] { iterationTask, addTask }).ConfigureAwait(false); } @@ -129,7 +129,7 @@ namespace Microsoft.Plugin.Program.UnitTests.Storage } }); - // Assert that this does not throw. Collections that aren't syncronized will throw an invalidoperatioexception if the list is modified while enumerating + // Assert that this does not throw. Collections that aren't synchronized will throw an invalidoperatioexception if the list is modified while enumerating await Task.WhenAll(new Task[] { iterationTask, addTask }).ConfigureAwait(false); } }