From 8e7b24a6de1eece1d903a44d37686883ce508a0f Mon Sep 17 00:00:00 2001 From: ladeak Date: Tue, 2 Apr 2024 17:58:32 +0200 Subject: [PATCH] Update comment triggering a build --- src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs b/src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs index 02425ffef153..a5425a368897 100644 --- a/src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs +++ b/src/Mvc/Mvc.ViewFeatures/src/Rendering/TagBuilder.cs @@ -20,8 +20,8 @@ namespace Microsoft.AspNetCore.Mvc.Rendering; [DebuggerDisplay("{DebuggerToString()}")] public class TagBuilder : IHtmlContent { - // Note '.' is valid according to the HTML 4.01 specification. Disallowed here to avoid - // confusion with CSS class selectors or when using jQuery. + // Note '.' is valid according to the HTML 4.01 specification. Disallowed here + // to avoid confusion with CSS class selectors or when using jQuery. private static readonly SearchValues _html401IdChars = SearchValues.Create("-0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz");