aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Groß2012-10-29 09:21:27 +0100
committerStephan Groß2012-10-29 09:21:27 +0100
commit5164f5d7978e68ff3e68eaab5d30faea21241fc8 (patch)
tree09c1bef1054c759787a8aa139fecf40e42f50df3
parent46e546ff2319fc2cf85279deee1ce2140e0c7f45 (diff)
downloaddjango-rest-framework-5164f5d7978e68ff3e68eaab5d30faea21241fc8.tar.bz2
fixed missplaced semicolon
-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 56f16226..c8769a10 100644
--- a/docs/api-guide/throttling.md
+++ b/docs/api-guide/throttling.md
@@ -102,8 +102,8 @@ For example, multiple user throttle rates could be implemented by using the foll
REST_FRAMEWORK = {
'DEFAULT_THROTTLE_CLASSES': (
'example.throttles.BurstRateThrottle',
- 'example.throttles.SustainedRateThrottle',
- )
+ 'example.throttles.SustainedRateThrottle'
+ ),
'DEFAULT_THROTTLE_RATES': {
'burst': '60/min',
'sustained': '1000/day'