Fixed small typo in docs/db-api.txt. Thanks, Rachel

git-svn-id: http://code.djangoproject.com/svn/django/trunk@691 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-25 21:57:32 +00:00
parent f053130f67
commit 6b4095ad10
1 changed files with 2 additions and 2 deletions

View File

@ -437,8 +437,8 @@ of objects then calling save() on them::
... expire_date=some_future_date)
>>> p.save()
Calling ``save()`` on an object with an id if ``None`` signifies to
Django that the object is new and should be inserted.
Calling ``save()`` on an object with a primary key whose value is ``None``
signifies to Django that the object is new and should be inserted.
Related objects (e.g. ``Choices``) are created using convenience functions::