﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34446	Coding style docs should contain incorrect example for Model style.	JiriKr	nobody	"https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/coding-style/#model-style

In dev documentation version there is no difference between ''Do this:'' and ''Don’t do this:'' in Meta section.

{{{
class Person(models.Model):
    first_name = models.CharField(max_length=20)
    last_name = models.CharField(max_length=40)

    class Meta:
        verbose_name_plural = ""people""
}}}



In 4.1 version it is correct. Related to https://code.djangoproject.com/ticket/34140 .


"	Bug	closed	Documentation	dev	Normal	fixed		Joseph V Zammit Paolo Melchiorre	Ready for checkin	1	0	0	0	1	0
