From 2bb84b9c2c84a23f4011f456a74a51863b6ff8e6 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 22 Nov 2005 14:23:07 +0000 Subject: [PATCH] Fixed #875 -- Fixed typo in docs/db-api.txt. Thanks, wojtek git-svn-id: http://code.djangoproject.com/svn/django/trunk@1352 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 30dece6482..fe17bd5921 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -142,7 +142,7 @@ double-underscore). For example:: translates (roughly) into the following SQL:: - SELECT * FROM polls_polls WHERE pub_date < NOW(); + SELECT * FROM polls_polls WHERE pub_date <= NOW(); .. admonition:: How this is possible