1
0
mirror of https://github.com/django/django.git synced 2025-06-02 18:19:11 +00:00

[5.1.x] Fixed typo in ref/models/fields.txt.

Backport of 799c3778186167eca3ed43f0e480738a607381de from main.
This commit is contained in:
Clifford Gama 2024-10-27 12:12:55 +02:00 committed by Sarah Boyce
parent a0ea554d24
commit b8277179d0

View File

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