1
0
mirror of https://github.com/django/django.git synced 2025-03-13 02:40:47 +00:00

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

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,
)