Fixed #5409 -- Fixed logic error in docs/db-api.txt. Thanks, David Paccoud

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-09-13 14:41:38 +00:00
parent a31bbda980
commit 28d27a77e8
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ In SQL terms, that evaluates to::
WHERE NOT (pub_date > '2005-1-3' AND headline = 'Hello')
This example excludes all entries whose ``pub_date`` is later than 2005-1-3
AND whose headline is NOT "Hello"::
OR whose headline is "Hello"::
Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3)).exclude(headline='Hello')