From 56949065b2c32f43fc7961e93de59c295e85623f Mon Sep 17 00:00:00 2001 From: David Sanders Date: Sun, 27 Jul 2014 09:54:28 -0600 Subject: [PATCH] Typo in documentation --- docs/performance.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/performance.rst b/docs/performance.rst index f9ca778..bfb531d 100644 --- a/docs/performance.rst +++ b/docs/performance.rst @@ -13,7 +13,7 @@ SQL query for every object in the result which is not of class ``BaseModel``. Compared to these solutions, *django-polymorphic* has the advantage that it only needs 1 SQL query *per object type*, and not *per object*. -The current implementation is does not use any custom SQL or Django DB layer +The current implementation does not use any custom SQL or Django DB layer internals - it is purely based on the standard Django ORM. Specifically, the query:: result_objects = list( ModelA.objects.filter(...) )