From 6859c2a56f2db318d58929a3de0c7e886715654e Mon Sep 17 00:00:00 2001 From: Adam Ralph Date: Sat, 7 Sep 2019 20:00:03 +0100 Subject: [PATCH] fix typo --- MinVerTests/Infra/FileSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinVerTests/Infra/FileSystem.cs b/MinVerTests/Infra/FileSystem.cs index 751661f1..fef888f3 100644 --- a/MinVerTests/Infra/FileSystem.cs +++ b/MinVerTests/Infra/FileSystem.cs @@ -44,7 +44,7 @@ private static void CreateDirectory(string path) private static void DeleteDirectory(string path) { - // Directory.Delete fails if anything in the tree has the read-only attibute set. ¯\_(ツ)_/¯ + // Directory.Delete fails if anything in the tree has the read-only attribute set. ¯\_(ツ)_/¯ ResetAttributes(new DirectoryInfo(path)); void ResetAttributes(DirectoryInfo directory)