aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/throttling.md
diff options
context:
space:
mode:
authorStephan Groß2012-10-29 09:22:20 +0100
committerStephan Groß2012-10-29 09:22:20 +0100
commit741b387f35a3f5daa98424d29fea4325898b7ff6 (patch)
tree2715b2766a3462584a462b9d05d5bee5f17ae1cc /docs/api-guide/throttling.md
parent5164f5d7978e68ff3e68eaab5d30faea21241fc8 (diff)
downloaddjango-rest-framework-741b387f35a3f5daa98424d29fea4325898b7ff6.tar.bz2
fixed missplaced semicolon
Diffstat (limited to 'docs/api-guide/throttling.md')
-rw-r--r--docs/api-guide/throttling.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md
index c8769a10..bfda7079 100644
--- a/docs/api-guide/throttling.md
+++ b/docs/api-guide/throttling.md
@@ -136,8 +136,8 @@ For example, given the following views...
REST_FRAMEWORK = {
'DEFAULT_THROTTLE_CLASSES': (
- 'rest_framework.throttles.ScopedRateThrottle',
- )
+ 'rest_framework.throttles.ScopedRateThrottle'
+ ),
'DEFAULT_THROTTLE_RATES': {
'contacts': '1000/day',
'uploads': '20/day'