summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-04-23 21:48:23 +0000
committerTimo Graham <timograham@gmail.com>2011-04-23 21:48:23 +0000
commitb2481a2cfb6969bf8968d03bb0a13408bc2af5d0 (patch)
tree0e9d855d35d8bf6856b837917ce5e50ed253ecae /docs
parentf4c808b7f50d6906d96593626ccdd016b0b1b96b (diff)
Fixed #15875 - typo in F() example; thanks jblaine.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16096 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 8b8ea6083d..3457913011 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -540,7 +540,7 @@ references can then be used in query filters to compare the values of two
different fields on the same model instance.
For example, to find a list of all blog entries that have had more comments
-than pingbacks, we construct an ``F()`` object to reference the comment count,
+than pingbacks, we construct an ``F()`` object to reference the pingback count,
and use that ``F()`` object in the query::
>>> from django.db.models import F