summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2012-10-27 21:18:48 +0200
committerFlorian Apolloner <florian@apolloner.eu>2012-10-27 21:20:21 +0200
commitcb2817543fed794d27ccc6f15304b735017e1dcd (patch)
tree5e843bdf94a818b259a77987169d621fce240f82 /docs
parentd8bd8292155eb7cd6a3099a5dc8b94e2e4e62c8a (diff)
[1.5.x] Removed a redundant colon in the query docs.
Thanks to Berker Peksag for the patch. Backport of 4f11b7362206224ad876018bba19b7c9a08b7f0b from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index d826a39562..321c8a42eb 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -417,7 +417,7 @@ translates (roughly) into the following SQL::
There's one exception though, in case of a
:class:`~django.db.models.ForeignKey` you can specify the field
name suffixed with ``_id``. In this case, the value parameter is expected
- to contain the raw value of the foreign model's primary key. For example::
+ to contain the raw value of the foreign model's primary key. For example:
>>> Entry.objects.filter(blog_id__exact=4)