From f53fe1e79eef77837c07670286a5157074f6fcf9 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sat, 23 Apr 2011 21:49:22 +0000 Subject: [PATCH] [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 --- docs/topics/db/queries.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index 130f378c90f4f..d6bc2c9aaed8b 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