Fixed typo in ScopedRateThrottle example views

This commit is contained in:
Rubén Díaz 2015-09-10 10:19:40 +03:00
parent a985fc521f
commit 671de792e2

View File

@ -148,7 +148,7 @@ For example, given the following views...
throttle_scope = 'contacts'
...
class ContactDetailView(ApiView):
class ContactDetailView(APIView):
throttle_scope = 'contacts'
...