Skip to content

Commit c82a205

Browse files
committed
nit
1 parent 58558d7 commit c82a205

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Http/src/Internal/RequestCookieCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public RequestCookieCollection()
2929

3030
public RequestCookieCollection(int capacity)
3131
{
32-
Store = new SmallCapacityDictionary<string, string>(StringComparer.OrdinalIgnoreCase, capacity);
32+
Store = new SmallCapacityDictionary<string, string>(capacity, StringComparer.OrdinalIgnoreCase);
3333
}
3434

3535
public RequestCookieCollection(Dictionary<string, string> store)

0 commit comments

Comments
 (0)