From b7d81715dc85fd5ec10a207b8b6ebca8399497e0 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Sat, 27 Oct 2012 21:18:48 +0200 Subject: [PATCH] Removed a redundant colon in the query docs. Thanks to Berker Peksag for the patch. --- docs/topics/db/queries.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)