From 9e80663c95a1d2c17b0d6cf9400d882e4fa89721 Mon Sep 17 00:00:00 2001 From: Evan Carmi Date: Wed, 24 Apr 2013 15:02:19 -0300 Subject: [PATCH] Fix CharField typo in legacy-databases.txt docs The example Person model in the legacy databases HowTo had a typo referring to ChaField instead of Charfield --- docs/howto/legacy-databases.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/legacy-databases.txt b/docs/howto/legacy-databases.txt index 4522ca01c0..0bea8b41c4 100644 --- a/docs/howto/legacy-databases.txt +++ b/docs/howto/legacy-databases.txt @@ -61,7 +61,7 @@ this generated model definition: class Person(models.Model): id = models.IntegerField(primary_key=True) - first_name = models.ChaField(max_length=70) + first_name = models.CharField(max_length=70) class Meta: **managed = False** db_table = 'CENSUS_PERSONS'