summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-09-07 18:46:11 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-09-07 18:46:11 +0000
commit165b55828a1fb2d9d9dff4e4b98b0c912556473e (patch)
tree7997dc235baa900062eca784bd32960e9ec1c4cb /docs
parente97ec4d142b7a20dc1d29a7f04b076d8b61fa380 (diff)
Fixed #8924 -- Corrected a couple typos in queries documentation, thanks arien.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 119374c0ed..1460fb21ad 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -336,7 +336,7 @@ you'll probably use:
>>> 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 @@ will return ``Blog`` objects that have an empty ``name`` on the ``author`` and
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