Ver código fonte

Fixed typo in ref/models/fields.txt.

Clifford Gama 4 meses atrás
pai
commit
799c377818
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      docs/ref/models/fields.txt

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