From 91ecc871037ed9ada779e126616000a3f213230e Mon Sep 17 00:00:00 2001 From: nnpcYvIVl Date: Thu, 12 Sep 2019 14:39:47 -0500 Subject: [PATCH] Update ManagedCompiler.cs --- src/Compilers/Core/MSBuildTask/ManagedCompiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compilers/Core/MSBuildTask/ManagedCompiler.cs b/src/Compilers/Core/MSBuildTask/ManagedCompiler.cs index 6e4e175b389..68ca40aefb5 100644 --- a/src/Compilers/Core/MSBuildTask/ManagedCompiler.cs +++ b/src/Compilers/Core/MSBuildTask/ManagedCompiler.cs @@ -428,7 +428,7 @@ public string LangVersion // ToolExe delegates back to ToolName if the override is not // set. So, if ToolExe == ToolName, we know ToolExe is not - // explicitly overriden. So, if both ToolPath is unset and + // explicitly overridden. So, if both ToolPath is unset and // ToolExe == ToolName, we know nothing is overridden, and // we can use our own csc. private bool HasToolBeenOverridden => !(string.IsNullOrEmpty(ToolPath) && ToolExe == ToolName); -- GitLab