summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-18 10:13:41 -0400
committerTim Graham <timograham@gmail.com>2015-04-18 10:14:38 -0400
commitae47854a25db7770590ddd556bc457b8cada18ae (patch)
tree360017dc9165cb3cb252dab688122bf2d4c74fa5 /docs
parentbd0883d5cc51ba0c4e106c9e20bfc94b296d6320 (diff)
[1.8.x] Removed DateTimeQuerySet from docs.
Obsolete since refs #23867. Backport of e9fdecf98417e39a93c81a854a780550321a9795 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 677d07be25..f4609b0081 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -696,9 +696,9 @@ datetimes
.. method:: datetimes(field_name, kind, order='ASC', tzinfo=None)
-Returns a ``DateTimeQuerySet`` — a ``QuerySet`` that evaluates to a list of
-:class:`datetime.datetime` objects representing all available dates of a
-particular kind within the contents of the ``QuerySet``.
+Returns a ``QuerySet`` that evaluates to a list of :class:`datetime.datetime`
+objects representing all available dates of a particular kind within the
+contents of the ``QuerySet``.
``field_name`` should be the name of a ``DateTimeField`` of your model.