mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
Fixed typo in docs/internals/contributing/writing-code/coding-style.txt.
This commit is contained in:
parent
d79fba7d8e
commit
aaffbabd58
1 changed files with 2 additions and 2 deletions
|
@ -310,8 +310,8 @@ Model style
|
||||||
|
|
||||||
class MyModel(models.Model):
|
class MyModel(models.Model):
|
||||||
class Direction(models.TextChoices):
|
class Direction(models.TextChoices):
|
||||||
UP = U, "Up"
|
UP = "U", "Up"
|
||||||
DOWN = D, "Down"
|
DOWN = "D", "Down"
|
||||||
|
|
||||||
Use of ``django.conf.settings``
|
Use of ``django.conf.settings``
|
||||||
===============================
|
===============================
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue