From 2e3ba9f5927048655fffa620bbac4f8b048056a4 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Thu, 2 Aug 2018 22:36:02 +0100 Subject: [PATCH] Removed out of place sentence in QuerySet.count() docs. --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::