Fix typo in error message (#17741)

This commit is contained in:
Pranav K 2019-12-10 11:30:13 -08:00 committed by GitHub
parent c0e98ecdfd
commit 3fba107522
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ namespace Microsoft.AspNetCore.Blazor.Build.Tasks
protected override bool HandleTaskExecutionErrors()
{
// Show a slightly better error than the standard ToolTask message that says "dotnet" failed.
Log.LogError($"ILLink failed with exited code {ExitCode}.");
Log.LogError($"ILLink failed with exit code {ExitCode}.");
return false;
}