Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 20a0570

Browse files
committed
Addressed cod review feedback:
- #1553
1 parent 22bb639 commit 20a0570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Microsoft.AspNet.Mvc.TagHelpers/EnvironmentTagHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ namespace Microsoft.AspNet.Mvc.TagHelpers
1212
/// <see cref="ITagHelper"/> implementation targeting &lt;environment&gt; elements that conditionally renders content
1313
/// based on the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
1414
/// </summary>
15-
/// <remarks>
16-
/// The specified environment names are compared case insensitively to the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
17-
/// </remarks>
1815
public class EnvironmentTagHelper : TagHelper
1916
{
2017
private static readonly char[] NameSeparator = new[] { ',' };
2118

2219
/// <summary>
2320
/// A comma separated list of environment names in which the content should be rendered.
2421
/// </summary>
22+
/// <remarks>
23+
/// The specified environment names are compared case insensitively to the current value of <see cref="IHostingEnvironment.EnvironmentName"/>.
24+
/// </remarks>
2525
public string Names { get; set; }
2626

2727
// Protected to ensure subclasses are correctly activated. Internal for ease of use when testing.

0 commit comments

Comments
 (0)