Change "lower-case to "lowercase" in xml comments (#17499)

This commit is contained in:
Roman Marusyk 2019-12-01 21:45:28 +01:00 committed by Justin Kotalik
parent ff8a7a0a94
commit 032625cd32
2 changed files with 4 additions and 4 deletions

View File

@ -6,13 +6,13 @@ namespace Microsoft.AspNetCore.Routing
public class LinkOptions
{
/// <summary>
/// Gets or sets a value indicating whether all generated paths URLs are lower-case.
/// Gets or sets a value indicating whether all generated paths URLs are lowercase.
/// Use <see cref="LowercaseQueryStrings" /> to configure the behavior for query strings.
/// </summary>
public bool? LowercaseUrls { get; set; }
/// <summary>
/// Gets or sets a value indicating whether a generated query strings are lower-case.
/// Gets or sets a value indicating whether a generated query strings are lowercase.
/// This property will be unless <see cref="LowercaseUrls" /> is also <c>true</c>.
/// </summary>
public bool? LowercaseQueryStrings { get; set; }

View File

@ -27,13 +27,13 @@ namespace Microsoft.AspNetCore.Routing
}
/// <summary>
/// Gets or sets a value indicating whether all generated paths URLs are lower-case.
/// Gets or sets a value indicating whether all generated paths URLs are lowercase.
/// Use <see cref="LowercaseQueryStrings" /> to configure the behavior for query strings.
/// </summary>
public bool LowercaseUrls { get; set; }
/// <summary>
/// Gets or sets a value indicating whether a generated query strings are lower-case.
/// Gets or sets a value indicating whether a generated query strings are lowercase.
/// This property will not be used unless <see cref="LowercaseUrls" /> is also <c>true</c>.
/// </summary>
public bool LowercaseQueryStrings { get; set; }