aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/2-requests-and-responses.md
diff options
context:
space:
mode:
authorTom Christie2013-05-10 21:56:33 +0100
committerTom Christie2013-05-10 21:56:33 +0100
commitfd84cf7f10bf703c5daae4a5f6a7dee0c22471dd (patch)
treed6c8a16fb218e1afd9d379ff67006d2cb778a5e5 /docs/tutorial/2-requests-and-responses.md
parent2e3032ff8cf1fe172e5ac38dc4320f1191fba340 (diff)
downloaddjango-rest-framework-fd84cf7f10bf703c5daae4a5f6a7dee0c22471dd.tar.bz2
Docs tweaks
Diffstat (limited to 'docs/tutorial/2-requests-and-responses.md')
-rw-r--r--docs/tutorial/2-requests-and-responses.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/2-requests-and-responses.md b/docs/tutorial/2-requests-and-responses.md
index 3a002cb0..260c4d83 100644
--- a/docs/tutorial/2-requests-and-responses.md
+++ b/docs/tutorial/2-requests-and-responses.md
@@ -8,7 +8,7 @@ Let's introduce a couple of essential building blocks.
REST framework introduces a `Request` object that extends the regular `HttpRequest`, and provides more flexible request parsing. The core functionality of the `Request` object is the `request.DATA` attribute, which is similar to `request.POST`, but more useful for working with Web APIs.
request.POST # Only handles form data. Only works for 'POST' method.
- request.DATA # Handles arbitrary data. Works any HTTP request with content.
+ request.DATA # Handles arbitrary data. Works for 'POST', 'PUT' and 'PATCH' methods.
## Response objects