aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Padilla2015-03-10 19:01:50 -0400
committerJosé Padilla2015-03-10 19:01:50 -0400
commitdc56e5a0f41fdd6350e91a5749023d086bd1640f (patch)
tree55b524c93b02eef404304f734be98871bbb1324f
parent3e44f788b194e74777013841d18a2a035df0757d (diff)
parent69b6e26f06c787761bb8d6006ed6fc607fbc9d23 (diff)
downloaddjango-rest-framework-dc56e5a0f41fdd6350e91a5749023d086bd1640f.tar.bz2
Merge pull request #2666 from balsdorf/patch-1
Changed incorrect class name in pagination docs
-rw-r--r--docs/api-guide/pagination.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/pagination.md b/docs/api-guide/pagination.md
index 3518fb34..eca468b8 100644
--- a/docs/api-guide/pagination.md
+++ b/docs/api-guide/pagination.md
@@ -127,7 +127,7 @@ This pagination style mirrors the syntax used when looking up multiple database
#### Setup
-To enable the `PageNumberPagination` style globally, use the following configuration:
+To enable the `LimitOffsetPagination` style globally, use the following configuration:
REST_FRAMEWORK = {
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination'