summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/contributing.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/contributing.txt b/docs/contributing.txt
index 21a967961a..31409f27bd 100644
--- a/docs/contributing.txt
+++ b/docs/contributing.txt
@@ -348,8 +348,8 @@ Model style
Don't do this::
class Person(models.Model):
- FirstName = models.CharField(maxlength=20)
- Last_Name = models.CharField(maxlength=40)
+ first_name = models.CharField(maxlength=20)
+ last_name = models.CharField(maxlength=40)
class Meta:
verbose_name_plural = 'people'
@@ -359,8 +359,8 @@ Model style
class Meta:
verbose_name_plural = 'people'
- FirstName = models.CharField(maxlength=20)
- Last_Name = models.CharField(maxlength=40)
+ first_name = models.CharField(maxlength=20)
+ last_name = models.CharField(maxlength=40)
* The order of model inner classes and standard methods should be as
follows (noting that these are not all required):