summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorMichael Kelly <mkelly@mozilla.com>2012-10-05 11:32:28 -0400
committerMichael Kelly <mkelly@mozilla.com>2012-10-05 11:32:28 -0400
commit074e65b04a82b4105ea9649c6ab8f5a796bc6984 (patch)
tree31cdefbdd24ad8ab219f5842d9eed14efd09f8ab /docs/ref
parent7515f6576b593c5f7a1ff2b2f934d5442b52b884 (diff)
Fixed typo in queryset docs under update method.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 8c188c67c3..53f76d6ffe 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1581,7 +1581,7 @@ does not call any ``save()`` methods on your models, nor does it emit the
:attr:`~django.db.models.signals.post_save` signals (which are a consequence of
calling :meth:`Model.save() <~django.db.models.Model.save()>`). If you want to
update a bunch of records for a model that has a custom
-:meth:`~django.db.models.Model.save()`` method, loop over them and call
+:meth:`~django.db.models.Model.save()` method, loop over them and call
:meth:`~django.db.models.Model.save()`, like this::
for e in Entry.objects.filter(pub_date__year=2010):