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 public class LinkOptions
{ {
/// <summary> /// <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. /// Use <see cref="LowercaseQueryStrings" /> to configure the behavior for query strings.
/// </summary> /// </summary>
public bool? LowercaseUrls { get; set; } public bool? LowercaseUrls { get; set; }
/// <summary> /// <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>. /// This property will be unless <see cref="LowercaseUrls" /> is also <c>true</c>.
/// </summary> /// </summary>
public bool? LowercaseQueryStrings { get; set; } public bool? LowercaseQueryStrings { get; set; }

View File

@ -27,13 +27,13 @@ namespace Microsoft.AspNetCore.Routing
} }
/// <summary> /// <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. /// Use <see cref="LowercaseQueryStrings" /> to configure the behavior for query strings.
/// </summary> /// </summary>
public bool LowercaseUrls { get; set; } public bool LowercaseUrls { get; set; }
/// <summary> /// <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>. /// This property will not be used unless <see cref="LowercaseUrls" /> is also <c>true</c>.
/// </summary> /// </summary>
public bool LowercaseQueryStrings { get; set; } public bool LowercaseQueryStrings { get; set; }