Przeglądaj źródła

Refs #32372 -- Updated manager name in related objects reference docs.

Follow up to 725c549ae7a34d83447201da7190f8d71c7fc2fc.
Jack 4 lat temu
rodzic
commit
2b4b6c8af0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      docs/ref/models/relations.txt

+ 1 - 1
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::