summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-06-16 04:04:24 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-06-16 04:04:24 +0000
commit3859314d4ac781cbe712d9bc7152c02a9396f9a2 (patch)
tree9f068d5fd2ca472c81fa9ab50db5193c04d1e92c /docs
parent96b1d0f966df66d1ed2eb750ff2e9b466061fb09 (diff)
Fixed #6944 -- Fixed a small typo in docs/model-api.txt. Thanks, julien
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7656 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/model-api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 4ed4ede97a..d5d6278447 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -681,7 +681,7 @@ set.
If ``True``, this field must be unique throughout the table.
This is enforced at the database level and at the Django admin-form level. If
-you try to add save a model with a duplicate value in a ``unique`` field, a
+you try to save a model with a duplicate value in a ``unique`` field, a
``django.db.IntegrityError`` will be raised by the model's ``save()`` method.
``unique_for_date``