From c04c8808c66cd04ce181653e0a247c5a5509e193 Mon Sep 17 00:00:00 2001 From: Yuri Hernani Heupa Date: Thu, 9 Jul 2015 22:41:53 -0300 Subject: [PATCH] Changed typo in Renderer docs The BrowsableAPIRenderer was misspelled with an extra 'e' letter --- docs/api-guide/renderers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/renderers.md b/docs/api-guide/renderers.md index 744b4064e..70672f0c9 100644 --- a/docs/api-guide/renderers.md +++ b/docs/api-guide/renderers.md @@ -181,7 +181,7 @@ Renders data into HTML for the Browsable API. This renderer will determine whic #### Customizing BrowsableAPIRenderer -By default the response content will be rendered with the highest priority renderer apart from `BrowseableAPIRenderer`. If you need to customize this behavior, for example to use HTML as the default return format, but use JSON in the browsable API, you can do so by overriding the `get_default_renderer()` method. For example: +By default the response content will be rendered with the highest priority renderer apart from `BrowsableAPIRenderer`. If you need to customize this behavior, for example to use HTML as the default return format, but use JSON in the browsable API, you can do so by overriding the `get_default_renderer()` method. For example: class CustomBrowsableAPIRenderer(BrowsableAPIRenderer): def get_default_renderer(self, view):