aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorStephan Groß2012-10-31 10:41:56 +0100
committerStephan Groß2012-10-31 10:41:56 +0100
commit7f7f0b6ffbae2c166bb87431b33803c9e695e251 (patch)
treee0aef18d9920dcf52246d5fe727417e7c43b505d /docs
parenta55dfaa4884b12691ae2e2d7ced5b64fd5630740 (diff)
downloaddjango-rest-framework-7f7f0b6ffbae2c166bb87431b33803c9e695e251.tar.bz2
added missing semicolon
Diffstat (limited to 'docs')
-rw-r--r--docs/api-guide/settings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/settings.md b/docs/api-guide/settings.md
index a3668e2a..4f87b30d 100644
--- a/docs/api-guide/settings.md
+++ b/docs/api-guide/settings.md
@@ -13,7 +13,7 @@ For example your project's `settings.py` file might include something like this:
REST_FRAMEWORK = {
'DEFAULT_RENDERER_CLASSES': (
'rest_framework.renderers.YAMLRenderer',
- )
+ ),
'DEFAULT_PARSER_CLASSES': (
'rest_framework.parsers.YAMLParser',
)