Merge pull request #92 from davesque/patch-1

Typo in documentation
fix_request_path_info
Diederik van der Boor 2014-07-28 11:38:19 +02:00
commit 1490af29b0
1 changed files with 1 additions and 1 deletions

View File

@ -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 Compared to these solutions, *django-polymorphic* has the advantage
that it only needs 1 SQL query *per object type*, and not *per object*. 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:: internals - it is purely based on the standard Django ORM. Specifically, the query::
result_objects = list( ModelA.objects.filter(...) ) result_objects = list( ModelA.objects.filter(...) )