summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2012-10-15 07:45:27 -0700
committerAdrian Holovaty <adrian@holovaty.com>2012-10-15 07:45:27 -0700
commit72efdc4d9229231ac44303fba1c504705f1515d6 (patch)
treed23867c936f3beaf2ebafc62f53d1621edff3d70 /docs/internals/contributing/writing-code
parent05b849162266c0df355bccdf53bd1e0617a19bb0 (diff)
parentf315006d50a1391393507cef1c52147cb766e45d (diff)
Merge pull request #436 from ddbeck/patch-1
Removed heteronormativity from coding style doc
Diffstat (limited to 'docs/internals/contributing/writing-code')
-rw-r--r--docs/internals/contributing/writing-code/coding-style.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/writing-code/coding-style.txt b/docs/internals/contributing/writing-code/coding-style.txt
index 2fa0233e3d..a699e39bd8 100644
--- a/docs/internals/contributing/writing-code/coding-style.txt
+++ b/docs/internals/contributing/writing-code/coding-style.txt
@@ -140,9 +140,9 @@ Model style
a tuple of tuples, with an all-uppercase name, either near the top of
the model module or just above the model class. Example::
- GENDER_CHOICES = (
- ('M', 'Male'),
- ('F', 'Female'),
+ DIRECTION_CHOICES = (
+ ('U', 'Up'),
+ ('D', 'Down'),
)
Use of ``django.conf.settings``