[1.11.x] Fixed typo in docs/ref/models/expressions.txt.

Backport of 5890d6ab03 from master
This commit is contained in:
Paolo Melchiorre 2017-01-25 13:46:18 +01:00 committed by Tim Graham
parent fb55247d59
commit a69fc396e4
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ within the last day::
... post=OuterRef('pk'),
... created_at__gte=one_day_ago,
... )
>>> Post.objects.annotate(recent_comment=Exists(recent_comments)
>>> Post.objects.annotate(recent_comment=Exists(recent_comments))
On PostgreSQL, the SQL looks like: