summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2012-02-18 21:40:26 +0000
committerTimo Graham <timograham@gmail.com>2012-02-18 21:40:26 +0000
commit5144f72be25b401cd6b37d842b58514cca6a948a (patch)
treeeb1dcc4b8ab0baa6b83ef8715f4f8eed125d3cd5
parent813dc01cd88e13b4d125cb24061ebb86c7ce3b09 (diff)
[1.3.X] Fixed #17685 - Typo in BaseDateListView.get_dated_items(); thanks ejb.
Backport of r17548 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17549 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 b1dbd82209..84f1b1eca3 100644
--- a/docs/ref/class-based-views.txt
+++ b/docs/ref/class-based-views.txt
@@ -781,11 +781,11 @@ BaseDateListView
.. method:: get_dated_items():
- Returns a 3-tuple containing (``date_list``, ``latest``,
+ Returns a 3-tuple containing (``date_list``, ``object_list``,
``extra_context``).
``date_list`` is the list of dates for which data is available.
- ``object_list`` is the list of objects ``extra_context`` is a
+ ``object_list`` is the list of objects. ``extra_context`` is a
dictionary of context data that will be added to any context data
provided by the
:class:`~django.views.generic.list.MultipleObjectMixin`.