summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-22 14:23:07 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-22 14:23:07 +0000
commit2bb84b9c2c84a23f4011f456a74a51863b6ff8e6 (patch)
tree6bf9f278275433b6989de4dac7cea34dc3064417 /docs/db-api.txt
parentceecf0f7def73c79fed70b46e815dc0315b04fb5 (diff)
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
Diffstat (limited to 'docs/db-api.txt')
-rw-r--r--docs/db-api.txt2
1 files changed, 1 insertions, 1 deletions
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