Django

Code

Changeset 1352

Show
Ignore:
Timestamp:
11/22/05 08:23:07 (3 years ago)
Author:
adrian
Message:

Fixed #875 -- Fixed typo in docs/db-api.txt. Thanks, wojtek

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r1155 r1352  
    143143translates (roughly) into the following SQL:: 
    144144 
    145     SELECT * FROM polls_polls WHERE pub_date < NOW(); 
     145    SELECT * FROM polls_polls WHERE pub_date <= NOW(); 
    146146 
    147147.. admonition:: How this is possible