From 1474ed8fe853d5cc722afff265c52eefb73fca65 Mon Sep 17 00:00:00 2001 From: Ryan Nowak Date: Tue, 20 Oct 2015 23:31:02 -0700 Subject: [PATCH] Fix breaks to xml docs --- .../ApiExplorer/IApiResponseFormatMetadataProvider.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/ApiExplorer/IApiResponseFormatMetadataProvider.cs b/src/Microsoft.AspNet.Mvc.Core/ApiExplorer/IApiResponseFormatMetadataProvider.cs index 8d21e10b93..80c8c088ed 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ApiExplorer/IApiResponseFormatMetadataProvider.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ApiExplorer/IApiResponseFormatMetadataProvider.cs @@ -11,13 +11,13 @@ namespace Microsoft.AspNet.Mvc.ApiExplorer /// Provides metadata information about the response format to an IApiDescriptionProvider. /// /// - /// An should implement this interface to expose metadata information + /// An should implement this interface to expose metadata information /// to an IApiDescriptionProvider. /// public interface IApiResponseFormatMetadataProvider { /// - /// Gets a filtered list of content types which are supported by the + /// Gets a filtered list of content types which are supported by the /// for the and . /// /// @@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc.ApiExplorer /// /// The for which the supported content types are desired. /// - /// Content types which are supported by the . + /// Content types which are supported by the . IReadOnlyList GetSupportedContentTypes( MediaTypeHeaderValue contentType, Type objectType);