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/many_to_many/models.py

    r7622 r8325  
    225. Many-to-many relationships 
    33 
    4 To define a many-to-many relationship, use ManyToManyField()
    5  
    6 In this example, an article can be published in multiple publications, 
    7 and a publication has multiple articles. 
     4To define a many-to-many relationship, use ``ManyToManyField()``
     5 
     6In this example, an ``Article`` can be published in multiple ``Publication`` 
     7objects, and a ``Publication`` has multiple ``Article`` objects. 
    88""" 
    99