Commit cb281754 authored by Florian Apolloner's avatar Florian Apolloner
Browse files

[1.5.x] Removed a redundant colon in the query docs.

Thanks to Berker Peksag for the patch.

Backport of 4f11b7362206224ad876018bba19b7c9a08b7f0b from master.
parent d8bd8292
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)