summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-14 23:34:47 +0000
committerTimo Graham <timograham@gmail.com>2010-12-14 23:34:47 +0000
commitc3143783ca74d049ebdde09074d08dfd548fa8fa (patch)
tree673f3b7cee62b668dbbc25d8c4d04fa5c7bac6cc /docs
parentf7f75879586be5195c5bcbc6de62974b1bca6dcd (diff)
Fixed #14901 - Typo in class-based views paginator doc. thanks adamv.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14916 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/class-based-views.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt
index 4784cd2350..e8255a4381 100644
--- a/docs/ref/class-based-views.txt
+++ b/docs/ref/class-based-views.txt
@@ -319,7 +319,7 @@ MultipleObjectMixin
pagination. By default this simply returns the value of
:attr:`MultipleObjectMixin.paginate_by`.
- .. method:: get_paginator(queryset, queryset, per_page, orphans=0, allow_empty_first_page=True)
+ .. method:: get_paginator(queryset, per_page, orphans=0, allow_empty_first_page=True)
Returns an instance of the paginator to use for this view. By default,
instantiates an instance of :attr:`paginator_class`.