Change "lower-case to "lowercase" in xml comments (#17499)
This commit is contained in:
parent
ff8a7a0a94
commit
032625cd32
|
|
@ -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; }
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue