diff options
| author | Veronica Lynn | 2013-08-07 14:00:06 -0400 | 
|---|---|---|
| committer | Veronica Lynn | 2013-08-07 14:00:06 -0400 | 
| commit | 4d8d2340be4de905af3488dc721c7b94b1371ef0 (patch) | |
| tree | 38b60bc6099d0af27a4a7fcc5dbaf91ca3d76b26 /docs/api-guide/responses.md | |
| parent | b52beb0734e167349b2cf397047a2ec7fe304b35 (diff) | |
| download | django-rest-framework-4d8d2340be4de905af3488dc721c7b94b1371ef0.tar.bz2 | |
Fixed typos in a bunch of docs
Diffstat (limited to 'docs/api-guide/responses.md')
| -rw-r--r-- | docs/api-guide/responses.md | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/docs/api-guide/responses.md b/docs/api-guide/responses.md index 399b7c23..5a42aa92 100644 --- a/docs/api-guide/responses.md +++ b/docs/api-guide/responses.md @@ -24,7 +24,7 @@ Unless you want to heavily customize REST framework for some reason, you should  Unlike regular `HttpResponse` objects, you do not instantiate `Response` objects with rendered content.  Instead you pass in unrendered data, which may consist of any Python primitives. -The renderers used by the `Response` class cannot natively handle complex datatypes such as Django model instances, so you need to serialize the data into primative datatypes before creating the `Response` object. +The renderers used by the `Response` class cannot natively handle complex datatypes such as Django model instances, so you need to serialize the data into primitive datatypes before creating the `Response` object.  You can use REST framework's `Serializer` classes to perform this data serialization, or use your own custom serialization. @@ -54,7 +54,7 @@ The rendered content of the response.  The `.render()` method must have been cal  ## .template_name -The `template_name`, if supplied.  Only required if `HTMLRenderer` or some other custom template renderer is the accepted renderer for the reponse. +The `template_name`, if supplied.  Only required if `HTMLRenderer` or some other custom template renderer is the accepted renderer for the response.  ## .accepted_renderer | 
