From b85ed9d5cd6cc174491bc84708093f16ddfc4e00 Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 22 Feb 2018 10:44:59 -0800 Subject: [PATCH] Commas in doc comments --- .../Extensions/HeaderDictionaryExtensions.cs | 4 ++-- .../Internal/ParsingHelpers.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/HeaderDictionaryExtensions.cs b/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/HeaderDictionaryExtensions.cs index 65484981e0..0e31660dc2 100644 --- a/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/HeaderDictionaryExtensions.cs +++ b/src/Microsoft.AspNetCore.Http.Abstractions/Extensions/HeaderDictionaryExtensions.cs @@ -20,7 +20,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Quotes any values containing comas, and then coma joins all of the values with any existing values. + /// Quotes any values containing commas, and then comma joins all of the values with any existing values. /// /// The to use. /// The header name. @@ -43,7 +43,7 @@ namespace Microsoft.AspNetCore.Http } /// - /// Quotes any values containing comas, and then coma joins all of the values. + /// Quotes any values containing commas, and then comma joins all of the values. /// /// The to use. /// The header name. diff --git a/src/Microsoft.AspNetCore.Http.Abstractions/Internal/ParsingHelpers.cs b/src/Microsoft.AspNetCore.Http.Abstractions/Internal/ParsingHelpers.cs index 59ffd2bf19..185fc40ac7 100644 --- a/src/Microsoft.AspNetCore.Http.Abstractions/Internal/ParsingHelpers.cs +++ b/src/Microsoft.AspNetCore.Http.Abstractions/Internal/ParsingHelpers.cs @@ -69,7 +69,7 @@ namespace Microsoft.AspNetCore.Http.Internal } } - // Quote items that contain comas and are not already quoted. + // Quote items that contain commas and are not already quoted. private static string QuoteIfNeeded(string value) { if (!string.IsNullOrEmpty(value) &&