Skip to content

Commit

Permalink
Fixed typo in docs/request_response.txt
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3192 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jun 22, 2006
1 parent a490d6b commit d8acac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/request_response.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ All attributes except ``session`` should be considered read-only.
It's possible that a request can come in via POST with an empty ``POST``
dictionary -- if, say, a form is requested via the POST HTTP method but
does not include form data. Therefore, you shouldn't use ``if request.POST``
to check for use of the POST method; instead, use ``if reuqest.method ==
to check for use of the POST method; instead, use ``if request.method ==
"POST"`` (see above).

Note: ``POST`` does *not* include file-upload information. See ``FILES``.
Expand Down

0 comments on commit d8acac9

Please sign in to comment.