Skip to content

Commit d635bc9

Browse files
authored
Merge pull request encode#7539 from verhovsky/patch-2
Correct indentation
2 parents 9dc10d2 + 98761e4 commit d635bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api-guide/views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ To override the default settings, REST framework provides a set of additional de
169169
from rest_framework.throttling import UserRateThrottle
170170

171171
class OncePerDayUserThrottle(UserRateThrottle):
172-
rate = '1/day'
172+
rate = '1/day'
173173

174174
@api_view(['GET'])
175175
@throttle_classes([OncePerDayUserThrottle])

0 commit comments

Comments
 (0)