summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-05-10 21:31:41 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-05-10 21:32:52 +0200
commitc970bcf36897bcfff0a44a9ca0328dd0d1409b07 (patch)
treedeced5c9796b595654e1f3f7ecd4d9d63dcfad16 /docs
parent169b1a404c8118bb75840523d5fb3543de9c8889 (diff)
Fixed #18257 -- Typo in contenttypes docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/contenttypes.txt2
1 files changed, 1 insertions, 1 deletions
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)