aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2015-03-04 15:51:00 +0000
committerTom Christie2015-03-04 15:51:00 +0000
commit18cc0230bff436da2f26b2b25034cece32c9f5d0 (patch)
treef5648574b0d80b8d4b236d05110c59cc5d54eda6 /docs/tutorial/quickstart.md
parent5aa204e94f3173e8bc20439033a5d613625b1311 (diff)
downloaddjango-rest-framework-18cc0230bff436da2f26b2b25034cece32c9f5d0.tar.bz2
Clean up pagination attributes
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index a4474c34..fe0ecbc7 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -123,7 +123,7 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': ('rest_framework.permissions.IsAdminUser',),
- 'PAGINATE_BY': 10
+ 'PAGE_SIZE': 10
}
Okay, we're done.