diff options
| author | Jack <67215529+jackaitken@users.noreply.github.com> | 2021-01-22 14:18:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-22 20:18:44 +0100 |
| commit | 2b4b6c8af0aae8785bc1347cf1be2e8e70fd5ff3 (patch) | |
| tree | 39aac2596c2a3916bf0bcf1606966ebb20a7d10d /docs | |
| parent | b1821fbad5518c8ae56b7b5c2b1ea2afbbd25c7a (diff) | |
Refs #32372 -- Updated manager name in related objects reference docs.
Follow up to 725c549ae7a34d83447201da7190f8d71c7fc2fc.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/models/relations.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/relations.txt b/docs/ref/models/relations.txt index 0cda606aef..24bc38a354 100644 --- a/docs/ref/models/relations.txt +++ b/docs/ref/models/relations.txt @@ -22,7 +22,7 @@ Related objects reference blog = models.ForeignKey(Blog, on_delete=models.CASCADE, null=True) In the above example, the methods below will be available on - the manager ``reporter.article_set``. + the manager ``blog.entry_set``. * Both sides of a :class:`~django.db.models.ManyToManyField` relation:: |
