Skip to content

Commit f60c0e9

Browse files
committed
Small doc typo throttles --> throttling
1 parent cadbfba commit f60c0e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api-guide/throttling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ If the `.wait()` method is implemented and the request is throttled, then a `Ret
184184

185185
The following is an example of a rate throttle, that will randomly throttle 1 in every 10 requests.
186186

187-
class RandomRateThrottle(throttles.BaseThrottle):
187+
class RandomRateThrottle(throttling.BaseThrottle):
188188
def allow_request(self, request, view):
189189
return random.randint(1, 10) == 1
190190

0 commit comments

Comments
 (0)