From 4052c26a73fbb80cd3118c6eb66d532e7c86a4fd Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Tue, 22 Mar 2016 10:33:56 -0700 Subject: [PATCH] Quick fix: Clean up `HeaderDictionary` doc comments - remove incorrect use of `Microsoft.AspNetCore.Http.Internal` namespace --- .../HeaderDictionary.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.WebListener/HeaderDictionary.cs b/src/Microsoft.AspNetCore.Server.WebListener/HeaderDictionary.cs index b71a1bd876..6676fd8b99 100644 --- a/src/Microsoft.AspNetCore.Server.WebListener/HeaderDictionary.cs +++ b/src/Microsoft.AspNetCore.Server.WebListener/HeaderDictionary.cs @@ -144,7 +144,8 @@ namespace Microsoft.AspNetCore.Server.WebListener /// /// Copies the elements to a one-dimensional Array instance at the specified index. /// - /// The one-dimensional Array that is the destination of the specified objects copied from the . + /// The one-dimensional Array that is the destination of the specified objects copied from + /// the . /// The zero-based index in at which copying begins. public void CopyTo(KeyValuePair[] array, int arrayIndex) { @@ -185,7 +186,7 @@ namespace Microsoft.AspNetCore.Server.WebListener /// /// Returns an enumerator that iterates through a collection. /// - /// An object that can be used to iterate through the collection. + /// An object that can be used to iterate through the collection. public IEnumerator GetEnumerator() { return Store.GetEnumerator(); @@ -194,7 +195,7 @@ namespace Microsoft.AspNetCore.Server.WebListener /// /// Returns an enumerator that iterates through a collection. /// - /// An object that can be used to iterate through the collection. + /// An object that can be used to iterate through the collection. IEnumerator> IEnumerable>.GetEnumerator() { return Store.GetEnumerator();