From 432e19034ae4e35bf6fc510fa632a0a58c9ff58e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 5 Aug 2005 14:38:22 +0000 Subject: [PATCH] Small formatting improvement to docs/db-api.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@408 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 ce9667477f..02faa8a484 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -43,7 +43,7 @@ double-underscore). For example:: polls.get_list(pub_date__lte=datetime.datetime.now()) -translates (roughly) into the following SQL: +translates (roughly) into the following SQL:: SELECT * FROM polls_polls WHERE pub_date < NOW();