From d6ce486ee814c17483a05231b04138a877fbafd3 Mon Sep 17 00:00:00 2001 From: Alex Arendsen Date: Thu, 14 Dec 2017 13:16:34 -0500 Subject: [PATCH] Missing word "send" in PUT description (#5008) --- ...ing-http-405-errors-after-publishing-web-api-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/web-api/overview/testing-and-debugging/troubleshooting-http-405-errors-after-publishing-web-api-applications.md b/aspnet/web-api/overview/testing-and-debugging/troubleshooting-http-405-errors-after-publishing-web-api-applications.md index d5c0954878..a49b36b0da 100644 --- a/aspnet/web-api/overview/testing-and-debugging/troubleshooting-http-405-errors-after-publishing-web-api-applications.md +++ b/aspnet/web-api/overview/testing-and-debugging/troubleshooting-http-405-errors-after-publishing-web-api-applications.md @@ -39,7 +39,7 @@ As a brief review, here are several of the most-used HTTP methods as defined in | **GET** | This method is used to retrieve data from a URI, and it probably the most-used HTTP method. | | **HEAD** | This method is much like the GET method, except that it doesn't actually retrieve the data from the request URI - it simply retrieves the HTTP status. | | **POST** | This method is typically used to send new data to the URI; POST is often used to submit form data. | -| **PUT** | This method is typically used to raw data to the URI; PUT is often used to submit JSON or XML data to Web API applications. | +| **PUT** | This method is typically used to send raw data to the URI; PUT is often used to submit JSON or XML data to Web API applications. | | **DELETE** | This method is used to remove data from a URI. | | **OPTIONS** | This method is typically used to retrieve the list of HTTP methods that are supported for a URI. | | **COPY MOVE** | These two methods are used with WebDAV, and their purpose is self-explanatory. |