From d9269055c941bd864049207441d7955ec65760fe Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 22 Dec 2005 15:10:01 +0000 Subject: [PATCH] Fixed typo in OR syntax example in docs/db-api.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1766 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/db-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/db-api.txt b/docs/db-api.txt index 3cee4d6c6e..a83b7dad6a 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -243,7 +243,7 @@ The ``|`` symbol signifies an "OR", so this (roughly) translates into:: You can use ``&`` and ``|`` operators together, and use parenthetical grouping. Example:: - polls.get_object(complex=(Q(question__startswith='Who') & (Q(pub_date__exact=date(2005, 5, 2)) | pub_date__exact=date(2005, 5, 6))) + polls.get_object(complex=(Q(question__startswith='Who') & (Q(pub_date__exact=date(2005, 5, 2)) | Q(pub_date__exact=date(2005, 5, 6)))) This roughly translates into::