diff options
| author | Stephan Groß | 2012-10-29 09:22:20 +0100 |
|---|---|---|
| committer | Stephan Groß | 2012-10-29 09:22:20 +0100 |
| commit | 741b387f35a3f5daa98424d29fea4325898b7ff6 (patch) | |
| tree | 2715b2766a3462584a462b9d05d5bee5f17ae1cc /docs/api-guide/throttling.md | |
| parent | 5164f5d7978e68ff3e68eaab5d30faea21241fc8 (diff) | |
| download | django-rest-framework-741b387f35a3f5daa98424d29fea4325898b7ff6.tar.bz2 | |
fixed missplaced semicolon
Diffstat (limited to 'docs/api-guide/throttling.md')
| -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 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' |
