From c970bcf36897bcfff0a44a9ca0328dd0d1409b07 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 10 May 2012 21:31:41 +0200 Subject: [PATCH] Fixed #18257 -- Typo in contenttypes docs. --- 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 ecfcff0c0f..1181e4b44f 100644 --- a/docs/ref/contrib/contenttypes.txt +++ b/docs/ref/contrib/contenttypes.txt @@ -328,7 +328,7 @@ Due to the way :class:`~django.contrib.contenttypes.generic.GenericForeignKey` is implemented, you cannot use such fields directly with filters (``filter()`` and ``exclude()``, for example) via the database API. Because a :class:`~django.contrib.contenttypes.generic.GenericForeignKey` isn't a -normal field objects, these examples will *not* work:: +normal field object, these examples will *not* work:: # This will fail >>> TaggedItem.objects.filter(content_object=guido)