From 8f35ac4f93c608eaced3f48a46e8922104e09182 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Tue, 28 May 2013 15:09:23 +0100 Subject: Fixed typos --- docs/api-guide/renderers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/api-guide/renderers.md') 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": "★"} -- cgit v1.2.3