From 7c67508a801ba2435c7d45a6982a9beb2203cf73 Mon Sep 17 00:00:00 2001 From: Mikkel Munch Mortensen <3xm@detfalskested.dk> Date: Thu, 7 Apr 2016 13:53:30 -0400 Subject: [PATCH] [1.8.x] Fixed #26477 -- Fixed typo in docs/ref/contrib/contenttypes.txt Backport of 4bb3ddbcc674601743c63311d7efbf0e1fd19742 from master --- docs/ref/contrib/contenttypes.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt index 298606e8de..1807d67df6 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -417,7 +417,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') [, ]