summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-04-23 21:49:22 +0000
committerTimo Graham <timograham@gmail.com>2011-04-23 21:49:22 +0000
commitf53fe1e79eef77837c07670286a5157074f6fcf9 (patch)
tree7c88de6cd7bef8fc61266645fcbff8ea2a2ea5b8 /docs
parent6a3d91828fd6959e8a3e6d944754bad37480bfee (diff)
[1.3.X] Fixed #15875 - typo in F() example; thanks jblaine.
Backport of r16096 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16097 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 130f378c90..d6bc2c9aae 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