summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2018-08-02 22:36:02 +0100
committerTim Graham <timograham@gmail.com>2018-08-02 17:36:02 -0400
commit2e3ba9f5927048655fffa620bbac4f8b048056a4 (patch)
tree7914baf85c2da39c4cd0dba5cad4e5c1c26e4ce7 /docs/ref
parent271542dad1686c438f658aa6220982495db09797 (diff)
Removed out of place sentence in QuerySet.count() docs.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index a5a0787d4c..57db085c5f 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2085,7 +2085,7 @@ where the default is such that at most 999 variables per query are used.
.. method:: count()
Returns an integer representing the number of objects in the database matching
-the ``QuerySet``. The ``count()`` method never raises exceptions.
+the ``QuerySet``.
Example::