aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/requests.md
diff options
context:
space:
mode:
authorMichael Elovskikh2013-01-17 17:17:53 +0600
committerMichael Elovskikh2013-01-17 17:17:53 +0600
commited1375485906f261449b92fe6e20715530625d07 (patch)
tree33532af335993279285ebe1abf8bf3a4b2eb6ba4 /docs/api-guide/requests.md
parent0f0a07b732a4bd90957c08b01d51e70c7e739d5d (diff)
downloaddjango-rest-framework-ed1375485906f261449b92fe6e20715530625d07.tar.bz2
Added PATCH HTTP method to the docs
Diffstat (limited to 'docs/api-guide/requests.md')
-rw-r--r--docs/api-guide/requests.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/requests.md b/docs/api-guide/requests.md
index 72932f5d..39a34fcf 100644
--- a/docs/api-guide/requests.md
+++ b/docs/api-guide/requests.md
@@ -83,13 +83,13 @@ You won't typically need to access this property.
# Browser enhancements
-REST framework supports a few browser enhancements such as browser-based `PUT` and `DELETE` forms.
+REST framework supports a few browser enhancements such as browser-based `PUT`, `PATCH` and `DELETE` forms.
## .method
`request.method` returns the **uppercased** string representation of the request's HTTP method.
-Browser-based `PUT` and `DELETE` forms are transparently supported.
+Browser-based `PUT`, `PATCH` and `DELETE` forms are transparently supported.
For more information see the [browser enhancements documentation].