From e7cb9d1251b2a7d84117f854fef99244a5b148f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Ros?= Date: Fri, 20 Mar 2020 16:02:44 -0700 Subject: [PATCH 1/2] Fixing QueryCollection property documentation --- src/Http/Http/src/QueryCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Http/src/QueryCollection.cs b/src/Http/Http/src/QueryCollection.cs index c1df1e59aa92..23dacf239ee2 100644 --- a/src/Http/Http/src/QueryCollection.cs +++ b/src/Http/Http/src/QueryCollection.cs @@ -43,7 +43,7 @@ public QueryCollection(int capacity) } /// - /// Get or sets the associated value from the collection as a single string. + /// Gets the associated value from the collection as a single string. /// /// The key name. /// the associated value from the collection as a StringValues or StringValues.Empty if the key is not present. From 5ca64ee789b2436b1860635b32d4993b43d1539c Mon Sep 17 00:00:00 2001 From: Sourabh Shirhatti Date: Fri, 10 Apr 2020 15:16:55 -0500 Subject: [PATCH 2/2] Update src/Http/Http/src/QueryCollection.cs Co-Authored-By: Chris Ross --- src/Http/Http/src/QueryCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Http/src/QueryCollection.cs b/src/Http/Http/src/QueryCollection.cs index 23dacf239ee2..b448269530c1 100644 --- a/src/Http/Http/src/QueryCollection.cs +++ b/src/Http/Http/src/QueryCollection.cs @@ -43,7 +43,7 @@ public QueryCollection(int capacity) } /// - /// Gets the associated value from the collection as a single string. + /// Gets the associated set of values from the collection. /// /// The key name. /// the associated value from the collection as a StringValues or StringValues.Empty if the key is not present.