Author: russellm
Date: 2008-07-25 06:32:06 -0500 (Fri, 25 Jul 2008)
New Revision: 8072
Modified:
django/trunk/docs/db-api.txt
Log:
Fixed #7937 -- Corrected typo in layout of db docs. Thanks to John Scott for
the report.
Modified: django/trunk/docs/db-api.txt
===================================================================
--- django/trunk/docs/db-api.txt 2008-07-25 11:21:21 UTC (rev 8071)
+++ django/trunk/docs/db-api.txt 2008-07-25 11:32:06 UTC (rev 8072)
@@ -2218,7 +2218,7 @@
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()
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---