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

Commit

Permalink
Fix XML doc on HttpMethodAttribute and derived ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Prologh authored and pranavkm committed Oct 30, 2018
1 parent 35d2ab3 commit af6527d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpDeleteAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP DELETE method.
/// Identifies an action that supports the HTTP DELETE method.
/// </summary>
public class HttpDeleteAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpGetAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP GET method.
/// Identifies an action that supports the HTTP GET method.
/// </summary>
public class HttpGetAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpHeadAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP HEAD method.
/// Identifies an action that supports the HTTP HEAD method.
/// </summary>
public class HttpHeadAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpOptionsAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP OPTIONS method.
/// Identifies an action that supports the HTTP OPTIONS method.
/// </summary>
public class HttpOptionsAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpPatchAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP PATCH method.
/// Identifies an action that supports the HTTP PATCH method.
/// </summary>
public class HttpPatchAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpPostAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP POST method.
/// Identifies an action that supports the HTTP POST method.
/// </summary>
public class HttpPostAttribute : HttpMethodAttribute
{
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNetCore.Mvc.Core/HttpPutAttribute.cs
Expand Up @@ -8,7 +8,7 @@
namespace Microsoft.AspNetCore.Mvc
{
/// <summary>
/// Identifies an action that only supports the HTTP PUT method.
/// Identifies an action that supports the HTTP PUT method.
/// </summary>
public class HttpPutAttribute : HttpMethodAttribute
{
Expand Down
Expand Up @@ -7,7 +7,7 @@
namespace Microsoft.AspNetCore.Mvc.Routing
{
/// <summary>
/// Identifies an action that only supports a given set of HTTP methods.
/// Identifies an action that supports a given set of HTTP methods.
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
public abstract class HttpMethodAttribute : Attribute, IActionHttpMethodProvider, IRouteTemplateProvider
Expand Down

0 comments on commit af6527d

Please sign in to comment.