aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2014-02-15 11:51:14 +0000
committerTom Christie2014-02-15 11:51:14 +0000
commit822eb39599b248c68573c3095639a831ab6df99a (patch)
tree4b1a3ca16bc37065ba921ee1e98206bf14860693 /docs/api-guide
parent895d660fdc423bf9bc6225eaedda32ef2fdf0b89 (diff)
parent6f4c2c6f0536bdf596534c295e411e17be14aab7 (diff)
downloaddjango-rest-framework-822eb39599b248c68573c3095639a831ab6df99a.tar.bz2
Merge pull request #1420 from bo-peng/patch-1
Update throttling.md
Diffstat (limited to 'docs/api-guide')
-rw-r--r--docs/api-guide/throttling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/throttling.md b/docs/api-guide/throttling.md
index fc1525df..b7c320f0 100644
--- a/docs/api-guide/throttling.md
+++ b/docs/api-guide/throttling.md
@@ -150,7 +150,7 @@ For example, given the following views...
REST_FRAMEWORK = {
'DEFAULT_THROTTLE_CLASSES': (
- 'rest_framework.throttling.ScopedRateThrottle'
+ 'rest_framework.throttling.ScopedRateThrottle',
),
'DEFAULT_THROTTLE_RATES': {
'contacts': '1000/day',