Author: gwilson
Date: 2008-09-07 13:46:11 -0500 (Sun, 07 Sep 2008)
New Revision: 8978
Modified:
django/trunk/docs/topics/db/queries.txt
Log:
Fixed #8924 -- Corrected a couple typos in queries documentation, thanks arien.
Modified: django/trunk/docs/topics/db/queries.txt
===================================================================
--- django/trunk/docs/topics/db/queries.txt 2008-09-07 06:18:59 UTC (rev
8977)
+++ django/trunk/docs/topics/db/queries.txt 2008-09-07 18:46:11 UTC (rev
8978)
@@ -336,7 +336,7 @@
>>> Entry.objects.get(headline__exact="Man bites dog")
- World generate SQL along these lines:
+ Would generate SQL along these lines:
.. code-block:: sql
@@ -428,7 +428,7 @@
also those which have an empty ``author`` on the ``entry``. If you don't want
those latter objects, you could write::
- Blog.objetcs.filter(entry__author__isnull=False,
+ Blog.objects.filter(entry__author__isnull=False,
entry__author__name__isnull=True)
Spanning multi-valued relationships
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---