summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEvan Carmi <ecarmi@wesleyan.edu>2013-04-24 15:02:19 -0300
committerEvan Carmi <ecarmi@wesleyan.edu>2013-04-24 15:02:19 -0300
commit9e80663c95a1d2c17b0d6cf9400d882e4fa89721 (patch)
tree739f47c0e4a518c870271c1ed15970b52639c5dc /docs
parentdb394e6ab2c1d3d53b8b8d691e995d0c3584b944 (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/legacy-databases.txt2
1 files changed, 1 insertions, 1 deletions
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'