aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/throttling.md
diff options
context:
space:
mode:
authorStephan Groß2012-10-29 09:20:14 +0100
committerStephan Groß2012-10-29 09:20:14 +0100
commit46e546ff2319fc2cf85279deee1ce2140e0c7f45 (patch)
treedaf60f37ca42c5fe22b977f71b7ead14aedc03d2 /docs/api-guide/throttling.md
parent72f3a7e4a7e07035f428bf2f8ce8ad31aa85f297 (diff)
downloaddjango-rest-framework-46e546ff2319fc2cf85279deee1ce2140e0c7f45.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 d54433b1..56f16226 100644
--- a/docs/api-guide/throttling.md
+++ b/docs/api-guide/throttling.md
@@ -32,8 +32,8 @@ The default throttling policy may be set globally, using the `DEFAULT_THROTTLE_C
REST_FRAMEWORK = {
'DEFAULT_THROTTLE_CLASSES': (
'rest_framework.throttles.AnonThrottle',
- 'rest_framework.throttles.UserThrottle',
- )
+ 'rest_framework.throttles.UserThrottle'
+ ),
'DEFAULT_THROTTLE_RATES': {
'anon': '100/day',
'user': '1000/day'