diff --git a/rest_framework/throttling.py b/rest_framework/throttling.py index e262b886b..aee83b567 100644 --- a/rest_framework/throttling.py +++ b/rest_framework/throttling.py @@ -237,7 +237,7 @@ class ScopedRateThrottle(SimpleRateThrottle): If `view.throttle_scope` is not set, don't apply this throttle. Otherwise generate the unique cache key by concatenating the user id - with the '.throttle_scope` property of the view. + with the `.throttle_scope` property of the view. """ if request.user.is_authenticated: ident = request.user.pk