From c5d8b8d109961b014320c9a18555365959cf13b2 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 14 Mar 2016 15:29:46 -0700 Subject: [PATCH] Fix incorrect doc comments --- .../RequestDelegateRouteBuilderExtensions.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs b/src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs index 9600565185..8b1827c4bb 100644 --- a/src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs +++ b/src/Microsoft.AspNetCore.Routing/RequestDelegateRouteBuilderExtensions.cs @@ -75,7 +75,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP GET requests for the given /// , and . /// /// The . @@ -88,7 +88,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP GET requests for the given /// , and . /// /// The . @@ -101,7 +101,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP POST requests for the given /// , and . /// /// The . @@ -114,7 +114,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP POST requests for the given /// , and . /// /// The . @@ -127,7 +127,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP PUT requests for the given /// , and . /// /// The . @@ -140,7 +140,7 @@ namespace Microsoft.AspNetCore.Routing } /// - /// Adds a route to the that only matches HTTP DELETE requests for the given + /// Adds a route to the that only matches HTTP PUT requests for the given /// , and . /// /// The .