summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-07-25 11:32:06 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-07-25 11:32:06 +0000
commit3898af2f51ed810cb9a1873aacede28851a83449 (patch)
treed12a95fd1f23969173a71c34d710355c8465a209 /docs
parentecdd071794ddbc71844778a5587f33296fa2da09 (diff)
Fixed #7937 -- Corrected typo in layout of db docs. Thanks to John Scott for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8072 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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 31a842a35f..a8d6a011e3 100644
--- a/docs/db-api.txt
+++ b/docs/db-api.txt
@@ -2218,7 +2218,7 @@ statement. It is a bulk operation for direct updates. It doesn't run any
signals (which are a consequence of calling ``save()``). If you want to save
every item in a ``QuerySet`` and make sure that the ``save()`` method is
called on each instance, you don't need any special function to handle that.
-Just loop over them and call ``save()``:
+Just loop over them and call ``save()``::
for item in my_queryset:
item.save()