Django

Code

Show
Ignore:
Timestamp:
08/12/08 09:15:38 (4 months ago)
Author:
gwilson
Message:

Fixed a couple typos in the modeltests' descriptions and made use of ReST inline literal markup for code snippets.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/modeltests/m2m_intermediary/models.py

    r5876 r8325  
    55table, use an intermediary model. 
    66 
    7 In this example, an ``Article`` can have multiple ``Reporter``s, and each 
    8 ``Article``-``Reporter`` combination (a ``Writer``) has a ``position`` field, 
    9 which specifies the ``Reporter``'s position for the given article (e.g. "Staff 
    10 writer"). 
     7In this example, an ``Article`` can have multiple ``Reporter`` objects, and 
     8each ``Article``-``Reporter`` combination (a ``Writer``) has a ``position`` 
     9field, which specifies the ``Reporter``'s position for the given article 
     10(e.g. "Staff writer"). 
    1111""" 
    1212