Django

Code

Changeset 691

Show
Ignore:
Timestamp:
09/25/05 16:57:32 (3 years ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r690 r691  
    438438    >>> p.save() 
    439439 
    440 Calling ``save()`` on an object with an id if ``None`` signifies to 
    441 Django that the object is new and should be inserted. 
     440Calling ``save()`` on an object with a primary key whose value is ``None`` 
     441signifies to Django that the object is new and should be inserted. 
    442442 
    443443Related objects (e.g. ``Choices``) are created using convenience functions::