summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views.txt
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-09-30 10:28:39 +0000
committerJannis Leidel <jannis@leidel.info>2011-09-30 10:28:39 +0000
commit2eadc418aff64790eb5b8d06ac995c720c233e49 (patch)
tree054fbd3dd8742e4aed3100c015e564318c2a77db /docs/ref/class-based-views.txt
parentec5bfed57ad86ec17a9169c279c967abbfbe52f9 (diff)
Fixed doc references to `django.db.models.query.QuerySet` and converted some tabs that were introduced in r16699 to spaces.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/class-based-views.txt')
-rw-r--r--docs/ref/class-based-views.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/class-based-views.txt b/docs/ref/class-based-views.txt
index 3ccc06cf69..5f1340be50 100644
--- a/docs/ref/class-based-views.txt
+++ b/docs/ref/class-based-views.txt
@@ -388,7 +388,7 @@ MultipleObjectTemplateResponseMixin
that operate upon a list of object instances. Requires that the view it is
mixed with provides ``self.object_list``, the list of object instances that
the view is operating on. ``self.object_list`` may be, but is not required
- to be, a :class:`~django.db.models.Queryset`.
+ to be, a :class:`~django.db.models.query.QuerySet`.
**Extends**
@@ -814,7 +814,7 @@ BaseDateListView
Returns the list of dates of type ``date_type`` for which
``queryset`` contains entries. For example, ``get_date_list(qs,
'year')`` will return the list of years for which ``qs`` has entries.
- See :meth:`~django.db.models.QuerySet.dates()` for the
+ See :meth:`~django.db.models.query.QuerySet.dates()` for the
ways that the ``date_type`` argument can be used.