summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-05 14:38:22 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-05 14:38:22 +0000
commit432e19034ae4e35bf6fc510fa632a0a58c9ff58e (patch)
treeb928e271e024a4b55a9c5774ae3de40dcb81404d /docs/db-api.txt
parent05d074670a069465d2e4fad2ff1e716f59a61bed (diff)
Small formatting improvement to docs/db-api.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@408 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 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();