summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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();