From d0995fac70549bd8a4bba4510ab89b95f59ba622 Mon Sep 17 00:00:00 2001 From: "Lewis M. Kabui" Date: Tue, 2 Oct 2018 09:49:31 +0300 Subject: [PATCH] Remove dot character from "pagination_class" (#6137) --- docs/api-guide/pagination.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/pagination.md b/docs/api-guide/pagination.md index 97590a785..7ae351a7f 100644 --- a/docs/api-guide/pagination.md +++ b/docs/api-guide/pagination.md @@ -46,7 +46,7 @@ If you want to modify particular aspects of the pagination style, you'll want to page_size_query_param = 'page_size' max_page_size = 1000 -You can then apply your new style to a view using the `.pagination_class` attribute: +You can then apply your new style to a view using the `pagination_class` attribute: class BillingRecordsView(generics.ListAPIView): queryset = Billing.objects.all()