diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2009-03-24 23:02:36 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2009-03-24 23:02:36 +0000 |
| commit | dce8fdbc68941e0ee496a469d63673bbdf51fc77 (patch) | |
| tree | dbd5773355e29abe237e1b1cae3effabb650a350 /docs/ref | |
| parent | fff55111b667a0da61df53c9d785d677f52e0ffe (diff) | |
[1.0.X] Made a couple of cross-references in the model fields documentaiton consistent.
Backport of r10007 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10167 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/models/fields.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 2c70e58ff2..85490d9b9a 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -869,14 +869,14 @@ that control how the relationship functions. Same as :attr:`ForeignKey.related_name`. -.. attribute:: ManyToManyFields.limit_choices_to +.. attribute:: ManyToManyField.limit_choices_to Same as :attr:`ForeignKey.limit_choices_to`. ``limit_choices_to`` has no effect when used on a ``ManyToManyField`` with an intermediate table. -.. attribute:: ManyToManyFields.symmetrical +.. attribute:: ManyToManyField.symmetrical Only used in the definition of ManyToManyFields on self. Consider the following model:: @@ -895,7 +895,7 @@ that control how the relationship functions. add the descriptor for the reverse relationship, allowing :class:`ManyToManyField` relationships to be non-symmetrical. -.. attribute:: ManyToManyFields.through +.. attribute:: ManyToManyField.through Django will automatically generate a table to manage many-to-many relationships. However, if you want to manually specify the intermediary |
