Merge pull request #3382 from outime/patch-1

Fixed typo in ScopedRateThrottle example views
This commit is contained in:
Xavier Ordoquy 2015-09-10 10:16:29 +02:00
commit cd4c389d1f

View File

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