diff options
| author | Stephan Groß | 2012-10-29 09:21:27 +0100 | 
|---|---|---|
| committer | Stephan Groß | 2012-10-29 09:21:27 +0100 | 
| commit | 5164f5d7978e68ff3e68eaab5d30faea21241fc8 (patch) | |
| tree | 09c1bef1054c759787a8aa139fecf40e42f50df3 /docs/api-guide | |
| parent | 46e546ff2319fc2cf85279deee1ce2140e0c7f45 (diff) | |
| download | django-rest-framework-5164f5d7978e68ff3e68eaab5d30faea21241fc8.tar.bz2 | |
fixed missplaced semicolon
Diffstat (limited to 'docs/api-guide')
| -rw-r--r-- | docs/api-guide/throttling.md | 4 | 
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' | 
