diff options
| author | Mikkel Munch Mortensen <3xm@detfalskested.dk> | 2016-04-07 13:53:30 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-07 13:53:30 -0400 |
| commit | 4bb3ddbcc674601743c63311d7efbf0e1fd19742 (patch) | |
| tree | 833e0c16e8b032f8b43c07e05f284429fd0cdcaf /docs | |
| parent | 5cda4677b3df1be971000ef27470d3efc308d3be (diff) | |
Fixed #26477 -- Fixed typo in docs/ref/contrib/contenttypes.txt
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/contenttypes.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index 343ede1949..f47bdf8d3e 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -391,7 +391,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') <QuerySet [<TaggedItem: django>, <TaggedItem: python>]> |
