aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/renderers.md
diff options
context:
space:
mode:
authorPascal Borreli2013-05-28 15:09:23 +0100
committerPascal Borreli2013-05-28 15:09:23 +0100
commit8f35ac4f93c608eaced3f48a46e8922104e09182 (patch)
tree55b394b57fc7b0e40283d89dc23dd0b41dfc074d /docs/api-guide/renderers.md
parent7123f0b1e6b29778c41476341bd2370f60c279fa (diff)
downloaddjango-rest-framework-8f35ac4f93c608eaced3f48a46e8922104e09182.tar.bz2
Fixed typos
Diffstat (limited to 'docs/api-guide/renderers.md')
-rw-r--r--docs/api-guide/renderers.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md
index 0161b54d..7e78318b 100644
--- a/docs/api-guide/renderers.md
+++ b/docs/api-guide/renderers.md
@@ -14,7 +14,7 @@ The set of valid renderers for a view is always defined as a list of classes. W
The basic process of content negotiation involves examining the request's `Accept` header, to determine which media types it expects in the response. Optionally, format suffixes on the URL may be used to explicitly request a particular representation. For example the URL `http://example.com/api/users_count.json` might be an endpoint that always returns JSON data.
-For more information see the documentation on [content negotation][conneg].
+For more information see the documentation on [content negotiation][conneg].
## Setting the renderers
@@ -69,7 +69,7 @@ If your API includes views that can serve both regular webpages and API response
Renders the request data into `JSON`, using utf-8 encoding.
-Note that non-ascii charaters will be rendered using JSON's `\uXXXX` character escape. For example:
+Note that non-ascii characters will be rendered using JSON's `\uXXXX` character escape. For example:
{"unicode black star": "\u2605"}
@@ -89,7 +89,7 @@ The client may additionally include an `'indent'` media type parameter, in which
Renders the request data into `JSON`, using utf-8 encoding.
-Note that non-ascii charaters will not be character escaped. For example:
+Note that non-ascii characters will not be character escaped. For example:
{"unicode black star": "★"}