Ticket #14901: generic-views-typo.diff

File generic-views-typo.diff, 674 bytes (added by Adam Vandenberg, 13 years ago)
  • docs/ref/class-based-views.txt

    diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt
    index 4784cd2..e8255a4 100644
    a b MultipleObjectMixin  
    319319        pagination. By default this simply returns the value of
    320320        :attr:`MultipleObjectMixin.paginate_by`.
    321321
    322     .. method:: get_paginator(queryset, queryset, per_page, orphans=0, allow_empty_first_page=True)
     322    .. method:: get_paginator(queryset, per_page, orphans=0, allow_empty_first_page=True)
    323323
    324324        Returns an instance of the paginator to use for this view. By default,
    325325        instantiates an instance of :attr:`paginator_class`.
Back to Top