From 799c3778186167eca3ed43f0e480738a607381de Mon Sep 17 00:00:00 2001 From: Clifford Gama Date: Sun, 27 Oct 2024 12:12:55 +0200 Subject: [PATCH] Fixed typo in ref/models/fields.txt. --- docs/ref/models/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index b2da1b519ce..14fc767ad70 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -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, )