Fixed typo in ref/models/fields.txt.

This commit is contained in:
Clifford Gama 2024-10-27 12:12:55 +02:00 committed by Sarah Boyce
parent cf4d902eb5
commit 799c377818
1 changed files with 1 additions and 1 deletions

View File

@ -2323,7 +2323,7 @@ called ``thirdpartyapp``, it can be referenced as::
class Car(models.Model):
manufacturer = models.ForeignKey(
"thirdpartyapp``.Manufacturer",
"thirdpartyapp.Manufacturer",
on_delete=models.CASCADE,
)