From 261b256cf881baa90af7df28ebdb056c2005535d Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Thu, 6 Jun 2019 11:46:23 -0700 Subject: [PATCH] Fix error spacing. \n\nCommit migrated from https://github.com/dotnet/aspnetcore-tooling/commit/1fdb3f3fdb218bd7ad8425dda513c709219e0c2e --- .../src/Components/ComponentDiagnosticFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Razor/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentDiagnosticFactory.cs b/src/Razor/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentDiagnosticFactory.cs index 9303b730bd..8eba2b1efb 100644 --- a/src/Razor/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentDiagnosticFactory.cs +++ b/src/Razor/Microsoft.AspNetCore.Razor.Language/src/Components/ComponentDiagnosticFactory.cs @@ -165,7 +165,7 @@ namespace Microsoft.AspNetCore.Razor.Language.Components public static readonly RazorDiagnosticDescriptor BindAttribute_InvalidSyntax = new RazorDiagnosticDescriptor( $"{DiagnosticPrefix}9991", - () => "The attribute names could not be inferred from bind attribute '{0}'. Bind attributes should be of the form" + + () => "The attribute names could not be inferred from bind attribute '{0}'. Bind attributes should be of the form " + "'bind' or 'bind-value' along with their corresponding optional parameters like 'bind-value:event', 'bind:format' etc.", RazorDiagnosticSeverity.Error);