Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit af6527d

Browse files
Prologhpranavkm
authored andcommitted
Fix XML doc on HttpMethodAttribute and derived ones
1 parent 35d2ab3 commit af6527d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/Microsoft.AspNetCore.Mvc.Core/HttpDeleteAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP DELETE method.
11+
/// Identifies an action that supports the HTTP DELETE method.
1212
/// </summary>
1313
public class HttpDeleteAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpGetAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP GET method.
11+
/// Identifies an action that supports the HTTP GET method.
1212
/// </summary>
1313
public class HttpGetAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpHeadAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP HEAD method.
11+
/// Identifies an action that supports the HTTP HEAD method.
1212
/// </summary>
1313
public class HttpHeadAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpOptionsAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP OPTIONS method.
11+
/// Identifies an action that supports the HTTP OPTIONS method.
1212
/// </summary>
1313
public class HttpOptionsAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpPatchAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP PATCH method.
11+
/// Identifies an action that supports the HTTP PATCH method.
1212
/// </summary>
1313
public class HttpPatchAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpPostAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP POST method.
11+
/// Identifies an action that supports the HTTP POST method.
1212
/// </summary>
1313
public class HttpPostAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/HttpPutAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Microsoft.AspNetCore.Mvc
99
{
1010
/// <summary>
11-
/// Identifies an action that only supports the HTTP PUT method.
11+
/// Identifies an action that supports the HTTP PUT method.
1212
/// </summary>
1313
public class HttpPutAttribute : HttpMethodAttribute
1414
{

src/Microsoft.AspNetCore.Mvc.Core/Routing/HttpMethodAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Microsoft.AspNetCore.Mvc.Routing
88
{
99
/// <summary>
10-
/// Identifies an action that only supports a given set of HTTP methods.
10+
/// Identifies an action that supports a given set of HTTP methods.
1111
/// </summary>
1212
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
1313
public abstract class HttpMethodAttribute : Attribute, IActionHttpMethodProvider, IRouteTemplateProvider

0 commit comments

Comments
 (0)