Commit 92d77f31 authored by Mikkel Munch Mortensen's avatar Mikkel Munch Mortensen Committed by Tim Graham
Browse files

[1.9.x] Fixed #26477 -- Fixed typo in docs/ref/contrib/contenttypes.txt

Backport of 4bb3ddbc from master
parent 1920d4d5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -396,7 +396,7 @@ Defining :class:`~django.contrib.contenttypes.fields.GenericRelation` with
This enables filtering, ordering, and other query operations on ``Bookmark``
from ``TaggedItem``::

    >>> # Get all tags belonging to books containing `django` in the url
    >>> # Get all tags belonging to bookmarks containing `django` in the url
    >>> TaggedItem.objects.filter(bookmarks__url__contains='django')
    [<TaggedItem: django>, <TaggedItem: python>]