diff --git a/src/Microsoft.AspNetCore.Http/Internal/QueryCollection.cs b/src/Microsoft.AspNetCore.Http/Internal/QueryCollection.cs index 643034deaf..620de44a92 100644 --- a/src/Microsoft.AspNetCore.Http/Internal/QueryCollection.cs +++ b/src/Microsoft.AspNetCore.Http/Internal/QueryCollection.cs @@ -45,7 +45,7 @@ namespace Microsoft.AspNetCore.Http.Internal /// /// Get or sets the associated value from the collection as a single string. /// - /// The header name. + /// The key name. /// the associated value from the collection as a StringValues or StringValues.Empty if the key is not present. public StringValues this[string key] { @@ -66,9 +66,9 @@ namespace Microsoft.AspNetCore.Http.Internal } /// - /// Gets the number of elements contained in the ;. + /// Gets the number of elements contained in the ;. /// - /// The number of elements contained in the . + /// The number of elements contained in the . public int Count { get @@ -94,10 +94,10 @@ namespace Microsoft.AspNetCore.Http.Internal } /// - /// Determines whether the contains a specific key. + /// Determines whether the contains a specific key. /// /// The key. - /// true if the contains a specific key; otherwise, false. + /// true if the contains a specific key; otherwise, false. public bool ContainsKey(string key) { if (Store == null) @@ -108,11 +108,11 @@ namespace Microsoft.AspNetCore.Http.Internal } /// - /// Retrieves a value from the dictionary. + /// Retrieves a value from the collection. /// - /// The header name. + /// The key. /// The value. - /// true if the contains the key; otherwise, false. + /// true if the contains the key; otherwise, false. public bool TryGetValue(string key, out StringValues value) { if (Store == null)