Django

Code

Changeset 7237

Show
Ignore:
Timestamp:
03/13/08 15:23:06 (8 months ago)
Author:
adrian
Message:

Fixed a typo in docs/model-api.txt

Files:

Legend:

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

    r7159 r7237  
    789789imported from elsewhere. 
    790790 
    791 **New in Django development version:** to refer to models defined in another 
    792 application, you must instead explicitially specify the application label. That 
    793 is, if the ``Manufacturer`` model above is defined in another application called 
    794 ``production``, you'd need to use:: 
     791**New in Django development version:** To refer to models defined in another 
     792application, you must instead explicitly specify the application label. For 
     793example, if the ``Manufacturer`` model above is defined in another application 
     794called ``production``, you'd need to use:: 
    795795 
    796796    class Car(models.Model):