summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/relations.txt2
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::