Quellcode durchsuchen

Fixed #26477 -- Fixed typo in docs/ref/contrib/contenttypes.txt

Mikkel Munch Mortensen vor 9 Jahren
Ursprung
Commit
4bb3ddbcc6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      docs/ref/contrib/contenttypes.txt

+ 1 - 1
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>]>