Skip to content

Commit 11e5851

Browse files
pauloxnetCarlton Gibson
authored andcommitted
Update pagination.md
Fixed 2 missing spaces in Custom Pagination snippet
1 parent 60b9e58 commit 11e5851

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api-guide/pagination.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ Suppose we want to replace the default pagination output style with a modified f
226226
def get_paginated_response(self, data):
227227
return Response({
228228
'links': {
229-
'next': self.get_next_link(),
230-
'previous': self.get_previous_link()
229+
'next': self.get_next_link(),
230+
'previous': self.get_previous_link()
231231
},
232232
'count': self.page.paginator.count,
233233
'results': data

0 commit comments

Comments
 (0)