Author: timo Date: 2011-08-06 11:50:19 -0700 (Sat, 06 Aug 2011) New Revision: 16583
Modified: django/branches/releases/1.3.X/docs/ref/models/querysets.txt Log: [1.3.X] Fixed #16580 - Typo in docs/ref/models/querysets.txt Backport of r16582 from trunk. Modified: django/branches/releases/1.3.X/docs/ref/models/querysets.txt =================================================================== --- django/branches/releases/1.3.X/docs/ref/models/querysets.txt 2011-08-06 18:49:58 UTC (rev 16582) +++ django/branches/releases/1.3.X/docs/ref/models/querysets.txt 2011-08-06 18:50:19 UTC (rev 16583) @@ -672,7 +672,7 @@ ...and would also pull in the ``building`` relation. You can refer to any ``ForeignKey`` or ``OneToOneField`` relation in -the list of fields passed to ``select_related``. Ths includes foreign +the list of fields passed to ``select_related``. This includes foreign keys that have ``null=True`` (unlike the default ``select_related()`` call). It's an error to use both a list of fields and the ``depth`` parameter in the same ``select_related()`` call, since they are -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
